diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
commit | ffe8a83e053396df448e9413828527613ca3bd46 (patch) | |
tree | a73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kio/kfile/kfile.h | |
parent | 682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff) | |
download | tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kio/kfile/kfile.h')
-rw-r--r-- | kio/kfile/kfile.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/kio/kfile/kfile.h b/kio/kfile/kfile.h index 70253f9d8..91f4f4599 100644 --- a/kio/kfile/kfile.h +++ b/kio/kfile/kfile.h @@ -18,7 +18,7 @@ #ifndef KFILE_H #define KFILE_H -#include <qdir.h> +#include <tqdir.h> #include "kdelibs_export.h" @@ -73,26 +73,26 @@ public: // sorting specific - // grr, who had the idea to set QDir::Name to 0x0? - static bool isSortByName( const QDir::SortSpec& sort ) { - return (sort & QDir::Time) != QDir::Time && - (sort & QDir::Size) != QDir::Size; + // grr, who had the idea to set TQDir::Name to 0x0? + static bool isSortByName( const TQDir::SortSpec& sort ) { + return (sort & TQDir::Time) != TQDir::Time && + (sort & TQDir::Size) != TQDir::Size; } - static bool isSortBySize( const QDir::SortSpec& sort ) { - return (sort & QDir::Size) == QDir::Size; + static bool isSortBySize( const TQDir::SortSpec& sort ) { + return (sort & TQDir::Size) == TQDir::Size; } - static bool isSortByDate( const QDir::SortSpec& sort ) { - return (sort & QDir::Time) == QDir::Time; + static bool isSortByDate( const TQDir::SortSpec& sort ) { + return (sort & TQDir::Time) == TQDir::Time; } - static bool isSortDirsFirst( const QDir::SortSpec& sort ) { - return (sort & QDir::DirsFirst) == QDir::DirsFirst; + static bool isSortDirsFirst( const TQDir::SortSpec& sort ) { + return (sort & TQDir::DirsFirst) == TQDir::DirsFirst; } - static bool isSortCaseInsensitive( const QDir::SortSpec& sort ) { - return (sort & QDir::IgnoreCase) == QDir::IgnoreCase; + static bool isSortCaseInsensitive( const TQDir::SortSpec& sort ) { + return (sort & TQDir::IgnoreCase) == TQDir::IgnoreCase; } |