summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/oscar/aim/aimjoinchat.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/oscar/aim/aimjoinchat.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/oscar/aim/aimjoinchat.cpp')
-rw-r--r--kopete/protocols/oscar/aim/aimjoinchat.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/kopete/protocols/oscar/aim/aimjoinchat.cpp b/kopete/protocols/oscar/aim/aimjoinchat.cpp
index 8b8c78a9..2ccec9b2 100644
--- a/kopete/protocols/oscar/aim/aimjoinchat.cpp
+++ b/kopete/protocols/oscar/aim/aimjoinchat.cpp
@@ -19,15 +19,15 @@
#include "aimjoinchat.h"
-#include <qlineedit.h>
-#include <qcombobox.h>
+#include <tqlineedit.h>
+#include <tqcombobox.h>
#include <klocale.h>
#include "aimjoinchatbase.h"
#include "aimaccount.h"
AIMJoinChatUI::AIMJoinChatUI( AIMAccount* account, bool modal,
- QWidget* parent, const char* name )
+ TQWidget* parent, const char* name )
: KDialogBase( parent, name, modal, i18n( "Join AIM Chat Room" ),
Cancel | User1, User1, true, i18n( "Join" ) )
{
@@ -41,8 +41,8 @@ AIMJoinChatUI::AIMJoinChatUI( AIMAccount* account, bool modal,
setMainWidget( m_joinUI );
- QObject::connect( this, SIGNAL( user1Clicked() ), this, SLOT( joinChat() ) );
- QObject::connect( this, SIGNAL( cancelClicked() ), this, SLOT( closeClicked() ) );
+ TQObject::connect( this, TQT_SIGNAL( user1Clicked() ), this, TQT_SLOT( joinChat() ) );
+ TQObject::connect( this, TQT_SIGNAL( cancelClicked() ), this, TQT_SLOT( closeClicked() ) );
}
AIMJoinChatUI::~AIMJoinChatUI()
@@ -50,14 +50,14 @@ AIMJoinChatUI::~AIMJoinChatUI()
m_exchanges.clear();
}
-void AIMJoinChatUI::setExchangeList( const QValueList<int>& list )
+void AIMJoinChatUI::setExchangeList( const TQValueList<int>& list )
{
m_exchanges = list;
- QStringList exchangeList;
- QValueList<int>::const_iterator it = list.begin();
+ TQStringList exchangeList;
+ TQValueList<int>::const_iterator it = list.begin();
while ( it != list.end() )
{
- exchangeList.append( QString::number( ( *it ) ) );
+ exchangeList.append( TQString::number( ( *it ) ) );
++it;
}
@@ -71,21 +71,21 @@ void AIMJoinChatUI::joinChat()
int item = m_joinUI->exchange->currentItem();
m_exchange = m_joinUI->exchange->text( item );
- emit closing( QDialog::Accepted );
+ emit closing( TQDialog::Accepted );
}
void AIMJoinChatUI::closeClicked()
{
//hmm, do nothing?
- emit closing( QDialog::Rejected );
+ emit closing( TQDialog::Rejected );
}
-QString AIMJoinChatUI::roomName() const
+TQString AIMJoinChatUI::roomName() const
{
return m_roomName;
}
-QString AIMJoinChatUI::exchange() const
+TQString AIMJoinChatUI::exchange() const
{
return m_exchange;
}