summaryrefslogtreecommitdiffstats
path: root/kdat/Util.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdat/Util.h')
-rw-r--r--kdat/Util.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/kdat/Util.h b/kdat/Util.h
index bf761e5..846dbc6 100644
--- a/kdat/Util.h
+++ b/kdat/Util.h
@@ -19,7 +19,7 @@
#ifndef _Util_h_
#define _Util_h_
-#include <qstring.h>
+#include <tqstring.h>
/**
* @short A collection of common useful methods.
@@ -30,18 +30,18 @@ public:
* Format the given number of bytes into a comma-separated string of
* digits.
*/
- static QString bytesToString( uint bytes );
+ static TQString bytesToString( uint bytes );
/**
* Format the given number of kilobytes into a comma-separated string of
* digits, followed by a 'k'.
*/
- static QString kbytesToString( uint kbytes );
+ static TQString kbytesToString( uint kbytes );
/**
* Find the longest common path prefix for a list of files.
*/
- static QString longestCommonPath( const QStringList& files );
+ static TQString longestCommonPath( const TQStringList& files );
};
#endif