summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/jabber/ui/dlgjabberservices.h
diff options
context:
space:
mode:
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();
};