diff options
Diffstat (limited to 'src/common/nokde/nokde_kurl.h')
-rw-r--r-- | src/common/nokde/nokde_kurl.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/common/nokde/nokde_kurl.h b/src/common/nokde/nokde_kurl.h index 202c46d..c31fca1 100644 --- a/src/common/nokde/nokde_kurl.h +++ b/src/common/nokde/nokde_kurl.h @@ -1,7 +1,7 @@ #ifndef _KURL_H_ #define _KURL_H_ -#include <qfile.h> +#include <tqfile.h> #include "common/global/global.h" @@ -9,12 +9,12 @@ class KURL : public Q3Url { public: KURL() {} - KURL(const QString &s) : Q3Url(s) {} + KURL(const TQString &s) : Q3Url(s) {} void cleanPath() {} bool isEmpty() const { return toString(false, false).isEmpty(); } - QString fileName(bool b) const { Q_UNUSED(b); Q_ASSERT(!b); return Q3Url::fileName(); } - static KURL fromPathOrURL(const QString &s) { return KURL(s); } -#if QT_VERSION>=0x040000 + TQString fileName(bool b) const { Q_UNUSED(b); Q_ASSERT(!b); return Q3Url::fileName(); } + static KURL fromPathOrURL(const TQString &s) { return KURL(s); } +#if [[[TQT_VERSION IS DEPRECATED]]]>=0x040000 bool operator <(const KURL &url) const { return path()<url.path(); } bool operator ==(const KURL &url) const { return path()==url.path(); } bool operator !=(const KURL &url) const { return path()!=url.path(); } @@ -25,8 +25,8 @@ public: class KTempFile { public: - const QFile *file() const { return 0; } - QFile *file() { return 0; } + const TQFile *file() const { return 0; } + TQFile *file() { return 0; } }; #endif |