summaryrefslogtreecommitdiffstats
path: root/parts/documentation/protocols/chm/chmfile.h
diff options
context:
space:
mode:
Diffstat (limited to 'parts/documentation/protocols/chm/chmfile.h')
-rw-r--r--parts/documentation/protocols/chm/chmfile.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/parts/documentation/protocols/chm/chmfile.h b/parts/documentation/protocols/chm/chmfile.h
index af89f55a..20e0ea67 100644
--- a/parts/documentation/protocols/chm/chmfile.h
+++ b/parts/documentation/protocols/chm/chmfile.h
@@ -18,8 +18,8 @@
#define __chmfile_h__
#include <cstdio>
-#include <qmap.h>
-#include <qstring.h>
+#include <tqmap.h>
+#include <tqstring.h>
class QFile;
@@ -34,19 +34,19 @@ struct ChmDirTableEntry
uint length;
};
-typedef QMap<QString, ChmDirTableEntry> ChmDirectoryMap;
+typedef TQMap<TQString, ChmDirTableEntry> ChmDirectoryMap;
class Chm
{
public:
- bool read( const QString&, ChmDirectoryMap&, QByteArray& ) const;
+ bool read( const TQString&, ChmDirectoryMap&, TQByteArray& ) const;
private:
- bool getChunk( QFile&, uint, ChmDirectoryMap& ) const;
- uint getEncInt( QFile&, uint& ) const;
- uint getName( QFile&, QString& ) const;
- uint getIntel32( QFile& ) const;
- uint getIntel64( QFile& ) const;
+ bool getChunk( TQFile&, uint, ChmDirectoryMap& ) const;
+ uint getEncInt( TQFile&, uint& ) const;
+ uint getName( TQFile&, TQString& ) const;
+ uint getIntel32( TQFile& ) const;
+ uint getIntel64( TQFile& ) const;
};
#endif // __chmfile_h__