summaryrefslogtreecommitdiffstats
path: root/kopete/libkopete/kopeteawayaction.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/libkopete/kopeteawayaction.cpp')
-rw-r--r--kopete/libkopete/kopeteawayaction.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/kopete/libkopete/kopeteawayaction.cpp b/kopete/libkopete/kopeteawayaction.cpp
index da5b77fb..038a43dd 100644
--- a/kopete/libkopete/kopeteawayaction.cpp
+++ b/kopete/libkopete/kopeteawayaction.cpp
@@ -40,14 +40,14 @@ AwayAction::AwayAction(const TQString &text, const TQIconSet &pix, const TDEShor
const TQObject *receiver, const char *slot, TQObject *parent, const char *name )
: TDESelectAction(text, pix, cut, parent, name ) , d(new Private( OnlineStatus() ) )
{
- TQObject::connect( Kopete::Away::getInstance(), TQT_SIGNAL( messagesChanged() ),
- this, TQT_SLOT( slotAwayChanged() ) );
+ TQObject::connect( Kopete::Away::getInstance(), TQ_SIGNAL( messagesChanged() ),
+ this, TQ_SLOT( slotAwayChanged() ) );
- TQObject::connect( this, TQT_SIGNAL( awayMessageSelected( const TQString & ) ),
+ TQObject::connect( this, TQ_SIGNAL( awayMessageSelected( const TQString & ) ),
receiver, slot );
- TQObject::connect( this, TQT_SIGNAL( activated( int ) ),
- this, TQT_SLOT( slotSelectAway( int ) ) );
+ TQObject::connect( this, TQ_SIGNAL( activated( int ) ),
+ this, TQ_SLOT( slotSelectAway( int ) ) );
slotAwayChanged();
}
@@ -56,14 +56,14 @@ AwayAction::AwayAction( const OnlineStatus& status, const TQString &text, const
const TQObject *receiver, const char *slot, TQObject *parent, const char *name )
: TDESelectAction(text, pix, cut, parent, name ) , d(new Private( status ) )
{
- TQObject::connect( Kopete::Away::getInstance(), TQT_SIGNAL( messagesChanged() ),
- this, TQT_SLOT( slotAwayChanged() ) );
+ TQObject::connect( Kopete::Away::getInstance(), TQ_SIGNAL( messagesChanged() ),
+ this, TQ_SLOT( slotAwayChanged() ) );
- TQObject::connect( this, TQT_SIGNAL( awayMessageSelected( const Kopete::OnlineStatus &, const TQString & ) ),
+ TQObject::connect( this, TQ_SIGNAL( awayMessageSelected( const Kopete::OnlineStatus &, const TQString & ) ),
receiver, slot );
- TQObject::connect( this, TQT_SIGNAL( activated( int ) ),
- this, TQT_SLOT( slotSelectAway( int ) ) );
+ TQObject::connect( this, TQ_SIGNAL( activated( int ) ),
+ this, TQ_SLOT( slotSelectAway( int ) ) );
slotAwayChanged();
}