diff options
Diffstat (limited to 'indexlib/manager.h')
-rw-r--r-- | indexlib/manager.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/indexlib/manager.h b/indexlib/manager.h index da321cb7b..aaa087132 100644 --- a/indexlib/manager.h +++ b/indexlib/manager.h @@ -21,11 +21,11 @@ * * In addition, as a special exception, the copyright holders give * permission to link the code of this program with any edition of - * the Qt library by Trolltech AS, Norway (or with modified versions - * of Qt that use the same license as Qt), and distribute linked + * the TQt library by Trolltech AS, Norway (or with modified versions + * of TQt that use the same license as TQt), and distribute linked * combinations including the two. You must obey the GNU General * Public License in all respects for all of the code used other than - * Qt. If you modify this file, you may extend this exception to + * TQt. If you modify this file, you may extend this exception to * your version of the file, but you are not obligated to do so. If * you do not wish to do so, delete this exception statement from * your version. @@ -56,12 +56,12 @@ class memory_manager { virtual void resize( unsigned ) = 0; }; -template <memory_manager* ( *get_parent )()> +template <memory_manager* ( *get_tqparent )()> struct thing_manager { public: - const unsigned char* ronly_base( unsigned idx ) const { return get_parent()->ronly_base( idx ); } - unsigned char* rw_base( unsigned idx ) const { return get_parent()->rw_base( idx ); } + const unsigned char* ronly_base( unsigned idx ) const { return get_tqparent()->ronly_base( idx ); } + unsigned char* rw_base( unsigned idx ) const { return get_tqparent()->rw_base( idx ); } }; |