summaryrefslogtreecommitdiffstats
path: root/kdecore/kqiodevicegzip_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdecore/kqiodevicegzip_p.h')
-rw-r--r--kdecore/kqiodevicegzip_p.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/kdecore/kqiodevicegzip_p.h b/kdecore/kqiodevicegzip_p.h
index c8ebe9be9..02c3fe039 100644
--- a/kdecore/kqiodevicegzip_p.h
+++ b/kdecore/kqiodevicegzip_p.h
@@ -20,22 +20,22 @@
#ifndef KDELIBS_KQIODEVICEGZIP_H
#define KDELIBS_KQIODEVICEGZIP_H
-#include <qiodevice.h>
-#include <qstring.h>
-#include <qfile.h>
+#include <tqiodevice.h>
+#include <tqstring.h>
+#include <tqfile.h>
#include <zlib.h>
/**
- * \brief QIODevice class for a gzipped file
+ * \brief TQIODevice class for a gzipped file
* \internal This class is internal to KDE.
* The class KFilterDev should be used instead.
*/
class KQIODeviceGZip : public QIODevice
{
public:
- KQIODeviceGZip(const QString& filename);
+ KQIODeviceGZip(const TQString& filename);
~KQIODeviceGZip(void);
bool open(int mode);
@@ -57,7 +57,7 @@ public:
private:
gzFile m_gzfile;
int m_ungetchar;
- QString m_filename;
+ TQString m_filename;
};