diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:54:04 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:54:04 +0000 |
commit | dc6b8e72fed2586239e3514819238c520636c9d9 (patch) | |
tree | 88b200df0a0b7fab9d6f147596173556f1ed9a13 /kfilereplace/kfilereplacelib.h | |
parent | 6927d4436e54551917f600b706a8d6109e49de1c (diff) | |
download | tdewebdev-dc6b8e72fed2586239e3514819238c520636c9d9.tar.gz tdewebdev-dc6b8e72fed2586239e3514819238c520636c9d9.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdewebdev@1157656 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kfilereplace/kfilereplacelib.h')
-rw-r--r-- | kfilereplace/kfilereplacelib.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kfilereplace/kfilereplacelib.h b/kfilereplace/kfilereplacelib.h index e5c14c72..de80d17d 100644 --- a/kfilereplace/kfilereplacelib.h +++ b/kfilereplace/kfilereplacelib.h @@ -38,7 +38,7 @@ class KFileReplaceLib .................* filename: second path (can be "/doc/html/", or "doc/html/" or "doc/html/index.html" for example) Return values:...* Full valid path (without double "/") */ - static QString formatFullPath(const QString& basePath, const QString& fileName); + static TQString formatFullPath(const TQString& basePath, const TQString& fileName); /** Add an extension to a filename, or a filepath @@ -46,20 +46,20 @@ class KFileReplaceLib .................* extension: extension to add without "." (ex: "html", "kfr") Return values:...* Filename / Filepath with the extension */ - static QString addExtension(const QString& fileName, const QString& extension); + static TQString addExtension(const TQString& fileName, const TQString& extension); - static QString formatFileSize(double size); + static TQString formatFileSize(double size); /** converts the old kfr format file in the new xml-based format. */ - static void convertOldToNewKFRFormat(const QString& fileName, KListView* stringView); + static void convertOldToNewKFRFormat(const TQString& fileName, KListView* stringView); /** Verifies that files, which we are scanning, respect some conditions */ - static bool isAnAccessibleFile(const QString& filePath, const QString& fileName, RCOptions* info); + static bool isAnAccessibleFile(const TQString& filePath, const TQString& fileName, RCOptions* info); - static void setIconForFileEntry(QListViewItem* item, QString path); + static void setIconForFileEntry(TQListViewItem* item, TQString path); }; #endif // KFILEREPLACEFILELIB_H |