summaryrefslogtreecommitdiffstats
path: root/khexedit/lib/koffsetcoltextexport.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'khexedit/lib/koffsetcoltextexport.cpp')
-rw-r--r--khexedit/lib/koffsetcoltextexport.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/khexedit/lib/koffsetcoltextexport.cpp b/khexedit/lib/koffsetcoltextexport.cpp
index c5644df..bce1fa6 100644
--- a/khexedit/lib/koffsetcoltextexport.cpp
+++ b/khexedit/lib/koffsetcoltextexport.cpp
@@ -16,7 +16,7 @@
// qt specific
-#include <qstring.h>
+#include <tqstring.h>
// lib specific
#include "koffsetcolumn.h"
#include "koffsetcoltextexport.h"
@@ -38,18 +38,18 @@ int KOffsetColTextExport::charsPerLine() const
}
-void KOffsetColTextExport::printFirstLine( QString &T, int Line ) const
+void KOffsetColTextExport::printFirstLine( TQString &T, int Line ) const
{
PrintLine = Line;
print( T );
}
-void KOffsetColTextExport::printNextLine( QString &T ) const
+void KOffsetColTextExport::printNextLine( TQString &T ) const
{
print( T );
}
-void KOffsetColTextExport::print( QString &T ) const
+void KOffsetColTextExport::print( TQString &T ) const
{
// TODO: fix me (no more printFunction)
char *B = new char[CodingWidth+1];