summaryrefslogtreecommitdiffstats
path: root/kopete/libkopete/kopeteawaydialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/libkopete/kopeteawaydialog.cpp')
-rw-r--r--kopete/libkopete/kopeteawaydialog.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kopete/libkopete/kopeteawaydialog.cpp b/kopete/libkopete/kopeteawaydialog.cpp
index 0dbb7023..19d9fb9c 100644
--- a/kopete/libkopete/kopeteawaydialog.cpp
+++ b/kopete/libkopete/kopeteawaydialog.cpp
@@ -33,7 +33,7 @@ public:
KopeteAwayDialog_Base *base;
};
-KopeteAwayDialog::KopeteAwayDialog( QWidget *parent, const char *name )
+KopeteAwayDialog::KopeteAwayDialog( TQWidget *parent, const char *name )
: KDialogBase( parent, name, true, i18n( "Global Away Message" ),
KDialogBase::Ok | KDialogBase::Cancel, KDialogBase::Ok, true )
{
@@ -44,7 +44,7 @@ KopeteAwayDialog::KopeteAwayDialog( QWidget *parent, const char *name )
d->base = new KopeteAwayDialog_Base( this );
setMainWidget( d->base );
- QObject::connect( d->base->cmbHistory, SIGNAL( activated( int ) ), this, SLOT( slotComboBoxSelection( int ) ) );
+ TQObject::connect( d->base->cmbHistory, TQT_SIGNAL( activated( int ) ), this, TQT_SLOT( slotComboBoxSelection( int ) ) );
awayInstance = Kopete::Away::getInstance();
mExtendedAwayType = 0;
@@ -99,8 +99,8 @@ void KopeteAwayDialog::cancelAway( int /* awayType */ )
void KopeteAwayDialog::init()
{
- QStringList awayMessages = awayInstance->getMessages();
- for( QStringList::iterator it = awayMessages.begin(); it != awayMessages.end(); ++it )
+ TQStringList awayMessages = awayInstance->getMessages();
+ for( TQStringList::iterator it = awayMessages.begin(); it != awayMessages.end(); ++it )
{
*it = KStringHandler::rsqueeze( *it );
}
@@ -113,7 +113,7 @@ void KopeteAwayDialog::init()
d->base->txtOneShot->setCursorPosition( 0 );
}
-QString KopeteAwayDialog::getSelectedAwayMessage()
+TQString KopeteAwayDialog::getSelectedAwayMessage()
{
mLastUserAwayMessage = d->base->txtOneShot->text();
return mLastUserAwayMessage;