summaryrefslogtreecommitdiffstats
path: root/kiten/kloader.h
diff options
context:
space:
mode:
Diffstat (limited to 'kiten/kloader.h')
-rw-r--r--kiten/kloader.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/kiten/kloader.h b/kiten/kloader.h
index 5682b21f..816d29c3 100644
--- a/kiten/kloader.h
+++ b/kiten/kloader.h
@@ -24,7 +24,7 @@
#ifndef KLOADER_H
#define KLOADER_H
-#include <qfile.h>
+#include <tqfile.h>
/**
* KLoader provides a way to load files in the most efficient way for
@@ -35,7 +35,7 @@ class KLoader
public:
/**
* The constructor takes the url and decides the best way to save,
- * which will mean using something like KIO::NetAccess or QFile.
+ * which will mean using something like KIO::NetAccess or TQFile.
*/
KLoader(const KURL &_target);
@@ -60,29 +60,29 @@ public:
* If open or close returns false, there was an error, and error
* returns what the error was, when available.
*/
- QString error(void);
+ TQString error(void);
/**
- * file returns a QFile open for reading, which may be for a temporary
+ * file returns a TQFile open for reading, which may be for a temporary
* file on the local filesystem.
*
* If this is called before the file is opened, you will crash.
*/
- QFile &file(void);
+ TQFile &file(void);
/**
* You can use this to read in your data.
*
* If this is called before the file is opened, you will crash.
*/
- QTextStream &textStream(void);
+ TQTextStream &textStream(void);
/**
* You can use this to read in your data.
*
* If this is called before the file is opened, you will crash.
*/
- QDataStream &dataStream(void);
+ TQDataStream &dataStream(void);
private:
class KLoaderPrivate;
KLoaderPrivate *d;