diff options
Diffstat (limited to 'kio/bookmarks/dptrtemplate.h')
-rw-r--r-- | kio/bookmarks/dptrtemplate.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kio/bookmarks/dptrtemplate.h b/kio/bookmarks/dptrtemplate.h index 26fd0b3a9..2a69d6a54 100644 --- a/kio/bookmarks/dptrtemplate.h +++ b/kio/bookmarks/dptrtemplate.h @@ -22,7 +22,7 @@ #ifndef __dptrtemplate_h__ #define __dptrtemplate_h__ -#include <qptrdict.h> +#include <tqptrdict.h> template<class Instance, class PrivateData> class dPtrTemplate { @@ -31,7 +31,7 @@ public: { if ( !d_ptr ) { cleanup_d_ptr(); - d_ptr = new QPtrDict<PrivateData>; + d_ptr = new TQPtrDict<PrivateData>; qAddPostRoutine( cleanup_d_ptr ); } PrivateData* ret = d_ptr->find( (void*) instance ); @@ -51,7 +51,7 @@ private: { delete d_ptr; } - static QPtrDict<PrivateData>* d_ptr; + static TQPtrDict<PrivateData>* d_ptr; }; #endif |