summaryrefslogtreecommitdiffstats
path: root/src/cache.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cache.h')
-rw-r--r--src/cache.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/cache.h b/src/cache.h
index c05bcaf..460adff 100644
--- a/src/cache.h
+++ b/src/cache.h
@@ -12,30 +12,30 @@
#ifndef CACHE_H
#define CACHE_H
-#include <qstring.h>
-#include <qsize.h>
-#include <qdir.h>
+#include <tqstring.h>
+#include <tqsize.h>
+#include <tqdir.h>
#include "scaler.h"
class Cache
{
private:
- QString mTheme;
- QString mThemeEngine;
- QDir mCacheDir;
+ TQString mTheme;
+ TQString mThemeEngine;
+ TQDir mCacheDir;
Scaler* mScaler;
void createCacheDir();
- void writeInfoFile(QString& file);
- bool isInSync(QString& file);
+ void writeInfoFile(TQString& file);
+ bool isInSync(TQString& file);
- QString getFile(QString file);
+ TQString getFile(TQString file);
public:
- Cache(Scaler* scaler, const QString& mThemeEngine, const QString& theme);
- QImage* cacheFile(const QString& file);
+ Cache(Scaler* scaler, const TQString& mThemeEngine, const TQString& theme);
+ TQImage* cacheFile(const TQString& file);
};
#endif