summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/jabber/ui/dlgjabberservices.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
commit47c8a359c5276062c4bc17f0e82410f29081b502 (patch)
tree2d54a5f60a5b74067632f9ef6df58c2bc38155e6 /kopete/protocols/jabber/ui/dlgjabberservices.h
parent6f82532777a35e0e60bbd2b290b2e93e646f349b (diff)
downloadtdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.tar.gz
tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1157648 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kopete/protocols/jabber/ui/dlgjabberservices.h')
-rw-r--r--kopete/protocols/jabber/ui/dlgjabberservices.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kopete/protocols/jabber/ui/dlgjabberservices.h b/kopete/protocols/jabber/ui/dlgjabberservices.h
index f2d4cedc..c64fb045 100644
--- a/kopete/protocols/jabber/ui/dlgjabberservices.h
+++ b/kopete/protocols/jabber/ui/dlgjabberservices.h
@@ -19,13 +19,13 @@
#ifndef DLGJABBERSERVICES_H
#define DLGJABBERSERVICES_H
-#include <qwidget.h>
+#include <tqwidget.h>
#include "jabberaccount.h"
#include "xmpp_tasks.h"
#include "dlgservices.h"
-#include <qlistview.h>
+#include <tqlistview.h>
/**
*@author Till Gerken <till@tantalo.net>
@@ -36,11 +36,11 @@ class dlgJabberServices:public dlgServices
Q_OBJECT
public:
- dlgJabberServices (JabberAccount *account, QWidget *parent = 0, const char *name = 0);
+ dlgJabberServices (JabberAccount *account, TQWidget *parent = 0, const char *name = 0);
~dlgJabberServices ();
private slots:
- void slotSetSelection (QListViewItem *);
+ void slotSetSelection (TQListViewItem *);
void slotService ();
void slotServiceFinished ();
void slotRegister ();
@@ -56,16 +56,16 @@ private:
};
-class dlgJabberServies_item : protected QObject, public QListViewItem
+class dlgJabberServies_item : protected TQObject, public TQListViewItem
{
Q_OBJECT
public:
- dlgJabberServies_item( QListView *parent , const QString &s1 , const QString &s2 )
- : QListViewItem(parent,s1,s2), can_browse(false) , can_register(false) {}
+ dlgJabberServies_item( TQListView *parent , const TQString &s1 , const TQString &s2 )
+ : TQListViewItem(parent,s1,s2), can_browse(false) , can_register(false) {}
bool can_browse, can_register;
XMPP::Jid jid;
- void updateInfo(const XMPP::Jid& jid, const QString &node , JabberAccount *account);
+ void updateInfo(const XMPP::Jid& jid, const TQString &node , JabberAccount *account);
private slots:
void slotDiscoFinished();
};