summaryrefslogtreecommitdiffstats
path: root/src/cache.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cache.cpp')
-rw-r--r--src/cache.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/cache.cpp b/src/cache.cpp
index a4899f8..d1c0636 100644
--- a/src/cache.cpp
+++ b/src/cache.cpp
@@ -13,22 +13,22 @@
#include <kstandarddirs.h>
#include <kconfig.h>
-#include <qfileinfo.h>
-#include <qdatetime.h>
-#include <qimage.h>
+#include <tqfileinfo.h>
+#include <tqdatetime.h>
+#include <tqimage.h>
#include "cache.h"
/* Disabled Cache (Michael Ummels) */
-Cache::Cache(Scaler* scaler, const QString& themeEngine, const QString& theme)
+Cache::Cache(Scaler* scaler, const TQString& themeEngine, const TQString& theme)
{
}
-QImage* Cache::cacheFile(const QString& file)
+TQImage* Cache::cacheFile(const TQString& file)
{
- return new QImage(file);
+ return new TQImage(file);
}
@@ -37,18 +37,18 @@ void Cache::createCacheDir()
}
-void Cache::writeInfoFile(QString& file)
+void Cache::writeInfoFile(TQString& file)
{
}
-bool Cache::isInSync(QString& file)
+bool Cache::isInSync(TQString& file)
{
return true;
}
-QString Cache::getFile(QString file)
+TQString Cache::getFile(TQString file)
{
return file;
}