summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/sms/smsaddcontactpage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/protocols/sms/smsaddcontactpage.cpp')
-rw-r--r--kopete/protocols/sms/smsaddcontactpage.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kopete/protocols/sms/smsaddcontactpage.cpp b/kopete/protocols/sms/smsaddcontactpage.cpp
index 55921b49..c18e5866 100644
--- a/kopete/protocols/sms/smsaddcontactpage.cpp
+++ b/kopete/protocols/sms/smsaddcontactpage.cpp
@@ -17,15 +17,15 @@
#include "smsaddcontactpage.h"
#include "kopeteaccount.h"
-#include <qlayout.h>
-#include <qlineedit.h>
+#include <tqlayout.h>
+#include <tqlineedit.h>
-SMSAddContactPage::SMSAddContactPage(QWidget *parent, const char *name )
+SMSAddContactPage::SMSAddContactPage(TQWidget *parent, const char *name )
: AddContactPage(parent,name)
{
- (new QVBoxLayout(this))->setAutoAdd(true);
+ (new TQVBoxLayout(this))->setAutoAdd(true);
smsdata = new smsAddUI(this);
}
@@ -38,8 +38,8 @@ bool SMSAddContactPage::apply(Kopete::Account* a, Kopete::MetaContact* m)
{
if ( validateData() )
{
- QString nr = smsdata->addNr->text();
- QString name = smsdata->addName->text();
+ TQString nr = smsdata->addNr->text();
+ TQString name = smsdata->addName->text();
return a->addContact( nr, m, Kopete::Account::ChangeKABC );
}