summaryrefslogtreecommitdiffstats
path: root/bibletime/util/directoryutil.h
diff options
context:
space:
mode:
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);
};
}