diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-17 03:03:11 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-17 03:03:11 +0000 |
commit | a2bae01d006ea8053e85bc16d09a8cf40a4b0b75 (patch) | |
tree | 7f2b2a1d90d0d5fbcbf23e06962192923058e0ad /lib/qextfileinfo.h | |
parent | 4e0c064056c23aabc053dc4a54d82ff1dceaf6a9 (diff) | |
download | tdewebdev-a2bae01d006ea8053e85bc16d09a8cf40a4b0b75.tar.gz tdewebdev-a2bae01d006ea8053e85bc16d09a8cf40a4b0b75.zip |
Fix kdewebdev FTBFS under Qt3
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdewebdev@1237074 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'lib/qextfileinfo.h')
-rw-r--r-- | lib/qextfileinfo.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/qextfileinfo.h b/lib/qextfileinfo.h index ca51123b..6a9e52c7 100644 --- a/lib/qextfileinfo.h +++ b/lib/qextfileinfo.h @@ -22,13 +22,13 @@ #include <tqdict.h> #include <tqregexp.h> -class TQExtFileInfo:public TQObject +class QExtFileInfo:public TQObject { Q_OBJECT TQ_OBJECT public: - TQExtFileInfo() {}; - ~TQExtFileInfo() {}; + QExtFileInfo() {}; + ~QExtFileInfo() {}; /** * Works like TQDir::canonicalPath, but it does not return an empty @@ -38,7 +38,7 @@ public: * Example: * /home/user/foo points to /mnt/foo * /home/user/foo/foo2 does not exists - * TQExtFileInfo::canonicalPath("/home/user/foo/foo2/") will return + * QExtFileInfo::canonicalPath("/home/user/foo/foo2/") will return * /mnt/foo/foo2/ . * @param path the path to resolve * @return the canonical path (symlinks resolved) |