summaryrefslogtreecommitdiffstats
path: root/krusader/RemoteMan/remoteman.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-03 02:49:54 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-03 02:49:54 +0000
commit6ffad5a006df848f5e9a80ca31e5faec8ed65e62 (patch)
tree3757770dc3586efff30fdfe30f7e36b64ab883f1 /krusader/RemoteMan/remoteman.h
parent1359f43e963c10d08c6c78f4806da291ca216bfe (diff)
downloadkrusader-6ffad5a0.tar.gz
krusader-6ffad5a0.zip
TQt4 port krusader
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/krusader@1239136 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'krusader/RemoteMan/remoteman.h')
-rw-r--r--krusader/RemoteMan/remoteman.h19
1 files changed, 10 insertions, 9 deletions
diff --git a/krusader/RemoteMan/remoteman.h b/krusader/RemoteMan/remoteman.h
index 385ef86..9e19347 100644
--- a/krusader/RemoteMan/remoteman.h
+++ b/krusader/RemoteMan/remoteman.h
@@ -34,37 +34,38 @@
#define REMOTEMAN_H
#include "remotemanbase.h"
-#include <qlistview.h>
+#include <tqlistview.h>
class remoteMan : public remoteManBase {
Q_OBJECT
+ TQ_OBJECT
public:
remoteMan();
- static QString getHost(); // we call remoteMan mainly with this function
+ static TQString getHost(); // we call remoteMan mainly with this function
protected:
void config2tree(); // internal
void tree2config(); // internal
- QListViewItem *findItem(const QString &name, QListViewItem *p);
+ TQListViewItem *findItem(const TQString &name, TQListViewItem *p);
public slots:
void addGroup();
void refreshData() ; // called whenver the current session changes
- void updateName(const QString&); // update the session/group name in real-time
- void updateConnect(const QString&); // enable/disable the connect button in real-time
+ void updateName(const TQString&); // update the session/group name in real-time
+ void updateConnect(const TQString&); // enable/disable the connect button in real-time
void addSession();
void connection();
void removeSession();
- void expandDecos(QListViewItem*);
- void collapseDecos(QListViewItem*);
+ void expandDecos(TQListViewItem*);
+ void collapseDecos(TQListViewItem*);
protected slots:
void accept();
void reject();
private:
- QListViewItem *currentItem;
- static QString url;
+ TQListViewItem *currentItem;
+ static TQString url;
};
#endif