summaryrefslogtreecommitdiffstats
path: root/src/part/localLister.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/part/localLister.h')
-rw-r--r--src/part/localLister.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/part/localLister.h b/src/part/localLister.h
index 5070e14..d9c8d84 100644
--- a/src/part/localLister.h
+++ b/src/part/localLister.h
@@ -4,31 +4,31 @@
#ifndef LOCALLISTER_H
#define LOCALLISTER_H
-#include <qthread.h>
+#include <tqthread.h>
class Directory;
template<class T> class Chain;
namespace Filelight
{
- class LocalLister : public QThread
+ class LocalLister : public TQThread
{
public:
- LocalLister( const QString &path, Chain<Directory> *cachedTrees, QObject *parent );
+ LocalLister( const TQString &path, Chain<Directory> *cachedTrees, TQObject *tqparent );
static bool readMounts();
private:
- QString m_path;
+ TQString m_path;
Chain<Directory> *m_trees;
- QObject *m_parent;
+ TQObject *m_parent;
private:
virtual void run();
- Directory *scan( const QCString&, const QCString& );
+ Directory *scan( const TQCString&, const TQCString& );
private:
- static QStringList s_localMounts, s_remoteMounts; //TODO namespace
+ static TQStringList s_localMounts, s_remoteMounts; //TODO namespace
};
}