summaryrefslogtreecommitdiffstats
path: root/atlantik/client/selectserver_widget.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:42:31 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:42:31 +0000
commit576eb4299a00bc053db35414406f46372a0f70f2 (patch)
tree4c030922d533821db464af566188e7d40cc8848c /atlantik/client/selectserver_widget.h
parent0718336b6017d1a4fc1d626544180a5a2a29ddec (diff)
downloadtdegames-576eb4299a00bc053db35414406f46372a0f70f2.tar.gz
tdegames-576eb4299a00bc053db35414406f46372a0f70f2.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegames@1157643 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'atlantik/client/selectserver_widget.h')
-rw-r--r--atlantik/client/selectserver_widget.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/atlantik/client/selectserver_widget.h b/atlantik/client/selectserver_widget.h
index c5d1b586..471bc8d2 100644
--- a/atlantik/client/selectserver_widget.h
+++ b/atlantik/client/selectserver_widget.h
@@ -17,9 +17,9 @@
#ifndef ATLANTIK_SELECTSERVER_WIDGET_H
#define ATLANTIK_SELECTSERVER_WIDGET_H
-#include <qwidget.h>
-#include <qlayout.h>
-#include <qradiobutton.h>
+#include <tqwidget.h>
+#include <tqlayout.h>
+#include <tqradiobutton.h>
#include <klineedit.h>
#include <klistview.h>
@@ -34,19 +34,19 @@ class SelectServer : public QWidget
Q_OBJECT
public:
- SelectServer(bool useMonopigatorOnStart, bool hideDevelopmentServers, QWidget *parent, const char *name=0);
+ SelectServer(bool useMonopigatorOnStart, bool hideDevelopmentServers, TQWidget *parent, const char *name=0);
virtual ~SelectServer();
void initPage();
void setHideDevelopmentServers(bool hideDevelopmentServers);
bool validateNext();
- QString hostToConnect() const;
+ TQString hostToConnect() const;
int portToConnect();
public slots:
void validateConnectButton();
void slotRefresh(bool useMonopigator = true);
- void slotMonopigatorAdd(QString ip, QString host, QString port, QString version, int users);
+ void slotMonopigatorAdd(TQString ip, TQString host, TQString port, TQString version, int users);
private slots:
void slotConnect();
@@ -55,14 +55,14 @@ private slots:
void monopigatorTimeout();
signals:
- void serverConnect(const QString host, int port);
- void msgStatus(const QString &message);
+ void serverConnect(const TQString host, int port);
+ void msgStatus(const TQString &message);
void showDevelopmentServers(bool show);
private:
void initMonopigator();
- QVBoxLayout *m_mainLayout;
+ TQVBoxLayout *m_mainLayout;
KListView *m_serverList;
KLineEdit *m_hostEdit, *m_portEdit;
KPushButton *m_addServerButton, *m_refreshButton, *m_customConnect, *m_connectButton;