summaryrefslogtreecommitdiffstats
path: root/bibletime/util/directoryutil.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-09-10 06:26:30 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-09-10 06:26:30 +0000
commit62f474f24066f1400ff57947480d012be1652c68 (patch)
tree83cdcc05217a91150a5dcba9de9bac4950cdc722 /bibletime/util/directoryutil.h
parent75ebad37bc3cfdb65bb8542dd847683e883c8b55 (diff)
downloadbibletime-62f474f24066f1400ff57947480d012be1652c68.tar.gz
bibletime-62f474f24066f1400ff57947480d012be1652c68.zip
Initial TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/bibletime@1173696 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'bibletime/util/directoryutil.h')
-rw-r--r--bibletime/util/directoryutil.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/bibletime/util/directoryutil.h b/bibletime/util/directoryutil.h
index 68a6e88..2bbcb56 100644
--- a/bibletime/util/directoryutil.h
+++ b/bibletime/util/directoryutil.h
@@ -12,7 +12,7 @@
#ifndef UTIL_FILESDIRECTORYUTIL_H
#define UTIL_FILESDIRECTORYUTIL_H
-#include <qstring.h>
+#include <tqstring.h>
namespace util {
@@ -30,22 +30,22 @@ private:
public:
/** Removes the given dir with all it's files and subdirs.
*
- * TODO: Check if it's suitable for huge dir trees, as it holds a QDir object
+ * TODO: Check if it's suitable for huge dir trees, as it holds a TQDir object
* for each of it at the same time in the deepest recursion.
* For really deep dir tree this may lead to a stack overflow.
*/
- static void removeRecursive(const QString& dir);
+ static void removeRecursive(const TQString& dir);
/** Returns the size of the directory including the size of all it's files
* and it's subdirs.
*
- * TODO: Check if it's suitable for huge dir trees, as it holds a QDir object
+ * TODO: Check if it's suitable for huge dir trees, as it holds a TQDir object
* for each of it at the same time in the deepest recursion.
* For really deep dir tree this may lead to a stack overflow.
*
* @return The size of the dir in bytes
*/
- static unsigned long getDirSizeRecursive(const QString& dir);
+ static unsigned long getDirSizeRecursive(const TQString& dir);
};
}