summaryrefslogtreecommitdiffstats
path: root/src/part/localLister.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-26 00:38:19 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-26 00:38:19 +0000
commitf0296ef9e1f94e23c00d6f490e565d1dc768416d (patch)
tree7f3fd9f99621c111ff67f2d62feb5960a3371853 /src/part/localLister.h
parent3098eb909534268622ce776f9a7bb5310d31b3c1 (diff)
downloadfilelight-f0296ef9e1f94e23c00d6f490e565d1dc768416d.tar.gz
filelight-f0296ef9e1f94e23c00d6f490e565d1dc768416d.zip
TQt4 port Filelight
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/filelight@1233561 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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
};
}