summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/testbed/testbedaddcontactpage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/protocols/testbed/testbedaddcontactpage.cpp')
-rw-r--r--kopete/protocols/testbed/testbedaddcontactpage.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/kopete/protocols/testbed/testbedaddcontactpage.cpp b/kopete/protocols/testbed/testbedaddcontactpage.cpp
index 5327b5b4..bb016453 100644
--- a/kopete/protocols/testbed/testbedaddcontactpage.cpp
+++ b/kopete/protocols/testbed/testbedaddcontactpage.cpp
@@ -16,9 +16,9 @@
#include "testbedaddcontactpage.h"
-#include <qlayout.h>
-#include <qradiobutton.h>
-#include <qlineedit.h>
+#include <tqlayout.h>
+#include <tqradiobutton.h>
+#include <tqlineedit.h>
#include <kdebug.h>
#include "kopeteaccount.h"
@@ -26,11 +26,11 @@
#include "testbedaddui.h"
-TestbedAddContactPage::TestbedAddContactPage( QWidget* parent, const char* name )
+TestbedAddContactPage::TestbedAddContactPage( TQWidget* parent, const char* name )
: AddContactPage(parent, name)
{
kdDebug(14210) << k_funcinfo << endl;
- ( new QVBoxLayout( this ) )->setAutoAdd( true );
+ ( new TQVBoxLayout( this ) )->setAutoAdd( true );
m_testbedAddUI = new TestbedAddUI( this );
}
@@ -43,12 +43,12 @@ bool TestbedAddContactPage::apply( Kopete::Account* a, Kopete::MetaContact* m )
if ( validateData() )
{
bool ok = false;
- QString type;
- QString name;
+ TQString type;
+ TQString name;
if ( m_testbedAddUI->m_rbEcho->isOn() )
{
type = m_testbedAddUI->m_uniqueName->text();
- name = QString::fromLatin1( "Echo Contact" );
+ name = TQString::fromLatin1( "Echo Contact" );
ok = true;
}
if ( ok )