summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/winpopup/wpaddcontact.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/protocols/winpopup/wpaddcontact.cpp')
-rw-r--r--kopete/protocols/winpopup/wpaddcontact.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/kopete/protocols/winpopup/wpaddcontact.cpp b/kopete/protocols/winpopup/wpaddcontact.cpp
index 6187c644..e5912c14 100644
--- a/kopete/protocols/winpopup/wpaddcontact.cpp
+++ b/kopete/protocols/winpopup/wpaddcontact.cpp
@@ -18,7 +18,7 @@
* *
***************************************************************************/
// QT Includes
-#include <qlayout.h>
+#include <tqlayout.h>
// KDE Includes
#include <kcombobox.h>
@@ -36,14 +36,14 @@
#include "wpaccount.h"
#include "wpaddcontact.h"
-WPAddContact::WPAddContact(QWidget *parent, WPAccount *newAccount, const char *name) : AddContactPage(parent, name)
+WPAddContact::WPAddContact(TQWidget *parent, WPAccount *newAccount, const char *name) : AddContactPage(parent, name)
{
// kdDebug(14170) << "WPAddContact::WPAddContact(<owner>, " << newAccount << ", <parent>, " << name << ")" << endl;
- (new QVBoxLayout(this))->setAutoAdd(true);
+ (new TQVBoxLayout(this))->setAutoAdd(true);
theDialog = new WPAddContactBase(this);
- connect(theDialog->mHostGroup, SIGNAL(activated(const QString &)), this, SLOT(slotSelected(const QString &)));
- connect(theDialog->mRefresh, SIGNAL(clicked()), this, SLOT(slotUpdateGroups()));
+ connect(theDialog->mHostGroup, TQT_SIGNAL(activated(const TQString &)), this, TQT_SLOT(slotSelected(const TQString &)));
+ connect(theDialog->mRefresh, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotUpdateGroups()));
theDialog->show();
theAccount = newAccount;
@@ -61,22 +61,22 @@ void WPAddContact::slotUpdateGroups()
kdDebug(14170) << "WPAddContact::slotUpdateGroups()" << endl;
theDialog->mHostGroup->clear();
- QStringList Groups = theAccount->getGroups();
- QStringList::ConstIterator end = Groups.end();
- for (QStringList::ConstIterator i = Groups.begin(); i != end; i++)
+ TQStringList Groups = theAccount->getGroups();
+ TQStringList::ConstIterator end = Groups.end();
+ for (TQStringList::ConstIterator i = Groups.begin(); i != end; i++)
theDialog->mHostGroup->insertItem(SmallIcon("network"), *i);
slotSelected(theDialog->mHostGroup->currentText());
}
-void WPAddContact::slotSelected(const QString &Group)
+void WPAddContact::slotSelected(const TQString &Group)
{
kdDebug(14170) << "WPAddContact::slotSelected(" << Group << ")" << endl;
theDialog->mHostName->clear();
- QStringList Hosts = theAccount->getHosts(Group);
- QString ownHost = theAccount->myself()->contactId();
- QStringList::ConstIterator end = Hosts.end();
- for (QStringList::ConstIterator i = Hosts.begin(); i != end; i++)
+ TQStringList Hosts = theAccount->getHosts(Group);
+ TQString ownHost = theAccount->myself()->contactId();
+ TQStringList::ConstIterator end = Hosts.end();
+ for (TQStringList::ConstIterator i = Hosts.begin(); i != end; i++)
if (*i != ownHost) theDialog->mHostName->insertItem(SmallIcon("personal"), *i);
}
@@ -84,7 +84,7 @@ bool WPAddContact::validateData()
{
kdDebug(14170) << "WPAddContact::validateData()" << endl;
- QString tmpHostName = theDialog->mHostName->currentText();
+ TQString tmpHostName = theDialog->mHostName->currentText();
if (tmpHostName.isEmpty()) {
KMessageBox::sorry(this, i18n("<qt>You must enter a valid hostname.</qt>"), i18n("WinPopup"));
@@ -93,7 +93,7 @@ bool WPAddContact::validateData()
// If our own host is not allowed as contact localhost should be forbidden as well,
// additionally somehow localhost as contact crashes when receiving a message from it?? GF
- if (tmpHostName.upper() == QString::fromLatin1("LOCALHOST")) {
+ if (tmpHostName.upper() == TQString::fromLatin1("LOCALHOST")) {
KMessageBox::sorry(this, i18n("<qt>LOCALHOST is not allowed as contact.</qt>"), i18n("WinPopup"));
return false;
}