diff options
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 |