summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/meanwhile/meanwhileeditaccountwidget.cpp
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/meanwhile/meanwhileeditaccountwidget.cpp
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/meanwhile/meanwhileeditaccountwidget.cpp')
-rw-r--r--kopete/protocols/meanwhile/meanwhileeditaccountwidget.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/kopete/protocols/meanwhile/meanwhileeditaccountwidget.cpp b/kopete/protocols/meanwhile/meanwhileeditaccountwidget.cpp
index f3d05710..edaa66f6 100644
--- a/kopete/protocols/meanwhile/meanwhileeditaccountwidget.cpp
+++ b/kopete/protocols/meanwhile/meanwhileeditaccountwidget.cpp
@@ -14,12 +14,12 @@
* *
*************************************************************************
*/
-#include <qlayout.h>
-#include <qlineedit.h>
-#include <qcheckbox.h>
-#include <qpushbutton.h>
-#include <qspinbox.h>
-#include <qcombobox.h>
+#include <tqlayout.h>
+#include <tqlineedit.h>
+#include <tqcheckbox.h>
+#include <tqpushbutton.h>
+#include <tqspinbox.h>
+#include <tqcombobox.h>
#include <kdebug.h>
#include <kopeteaccount.h>
#include <kopetepasswordwidget.h>
@@ -39,8 +39,8 @@ void MeanwhileEditAccountWidget::setupClientList()
int i = 0;
for (id = MeanwhileSession::getClientIDs(); id->name; id++, i++) {
- QString name = QString("%1 (0x%2)")
- .arg(QString(id->name))
+ TQString name = TQString("%1 (0x%2)")
+ .arg(TQString(id->name))
.arg(id->id, 0, 16);
mClientID->insertItem(name, i);
@@ -64,7 +64,7 @@ void MeanwhileEditAccountWidget::selectClientListItem(int selectedID)
}
MeanwhileEditAccountWidget::MeanwhileEditAccountWidget(
- QWidget* parent,
+ TQWidget* parent,
Kopete::Account* theAccount,
MeanwhileProtocol *theProtocol)
: MeanwhileEditAccountBase(parent),
@@ -106,8 +106,8 @@ MeanwhileEditAccountWidget::MeanwhileEditAccountWidget(
slotSetServer2Default();
}
- QObject::connect(btnServerDefaults, SIGNAL(clicked()),
- SLOT(slotSetServer2Default()));
+ TQObject::connect(btnServerDefaults, TQT_SIGNAL(clicked()),
+ TQT_SLOT(slotSetServer2Default()));
show();
}