summaryrefslogtreecommitdiffstats
path: root/ksquirrel/sq_pixmapcache.h
diff options
context:
space:
mode:
Diffstat (limited to 'ksquirrel/sq_pixmapcache.h')
-rw-r--r--ksquirrel/sq_pixmapcache.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/ksquirrel/sq_pixmapcache.h b/ksquirrel/sq_pixmapcache.h
index e5f9936..cf0a567 100644
--- a/ksquirrel/sq_pixmapcache.h
+++ b/ksquirrel/sq_pixmapcache.h
@@ -18,8 +18,8 @@
#ifndef SQ_PIXMAPCACHE_H
#define SQ_PIXMAPCACHE_H
-#include <qmap.h>
-#include <qobject.h>
+#include <tqmap.h>
+#include <tqobject.h>
#include <kurl.h>
@@ -29,15 +29,15 @@ class SQ_DirThumbs;
/*
* SQ_PixmapCache represents a simple memory cache, which
- * stores pixmaps. It doesn't use neither QPixmapCache nor QCache.
+ * stores pixmaps. It doesn't use neither TQPixmapCache nor TQCache.
*
* Uses SQ_Dir(Thumbnails) to store thumbnails on disk.
*/
-class SQ_PixmapCache : public QObject, public QMap<KURL, SQ_Thumbnail>
+class SQ_PixmapCache : public TQObject, public TQMap<KURL, SQ_Thumbnail>
{
public:
- SQ_PixmapCache(QObject *parent, int limit = 20*1024);
+ SQ_PixmapCache(TQObject *tqparent, int limit = 20*1024);
~SQ_PixmapCache();
/*
@@ -70,7 +70,7 @@ class SQ_PixmapCache : public QObject, public QMap<KURL, SQ_Thumbnail>
/*
* Check if pixmap, represented by 'key', is already in cache.
*/
- bool contains2(const KURL &key, SQ_Thumbnail &th);
+ bool tqcontains2(const KURL &key, SQ_Thumbnail &th);
/*
* Calculate total size used by cache (not exact!)