diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:25:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:25:18 +0000 |
commit | aa3a1ca934bc541bddd3fa136a85f106f7da266e (patch) | |
tree | 9ad0b795aed8fa4ac30c2fe0fd1aacb8175714c0 /kdat/Util.h | |
parent | b10cf7066791a2f362495890cd50c984e8025412 (diff) | |
download | tdeadmin-aa3a1ca934bc541bddd3fa136a85f106f7da266e.tar.gz tdeadmin-aa3a1ca934bc541bddd3fa136a85f106f7da266e.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeadmin@1157635 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdat/Util.h')
-rw-r--r-- | kdat/Util.h | 8 |
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 |