summaryrefslogtreecommitdiffstats
path: root/kopete/kopete/chatwindow/chatmemberslistwidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/kopete/chatwindow/chatmemberslistwidget.cpp')
-rw-r--r--kopete/kopete/chatwindow/chatmemberslistwidget.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/kopete/kopete/chatwindow/chatmemberslistwidget.cpp b/kopete/kopete/chatwindow/chatmemberslistwidget.cpp
index de06b9e0..df6ba03c 100644
--- a/kopete/kopete/chatwindow/chatmemberslistwidget.cpp
+++ b/kopete/kopete/chatwindow/chatmemberslistwidget.cpp
@@ -78,8 +78,8 @@ ChatMembersListWidget::ContactItem::ContactItem( ChatMembersListWidget *parent,
setText( 0, nick );
setDragEnabled(true);
- connect( m_contact, TQT_SIGNAL( propertyChanged( Kopete::Contact *, const TQString &, const TQVariant &, const TQVariant & ) ),
- this, TQT_SLOT( slotPropertyChanged( Kopete::Contact *, const TQString &, const TQVariant &, const TQVariant & ) ) ) ;
+ connect( m_contact, TQ_SIGNAL( propertyChanged( Kopete::Contact *, const TQString &, const TQVariant &, const TQVariant & ) ),
+ this, TQ_SLOT( slotPropertyChanged( Kopete::Contact *, const TQString &, const TQVariant &, const TQVariant & ) ) ) ;
setStatus( parent->session()->contactOnlineStatus(m_contact) );
reposition();
@@ -154,17 +154,17 @@ ChatMembersListWidget::ChatMembersListWidget( Kopete::ChatSession *session, TQWi
for ( TQPtrListIterator<Kopete::Contact> it( session->members() ); it.current(); ++it )
slotContactAdded( *it );
- connect( this, TQT_SIGNAL( contextMenu( TDEListView*, TQListViewItem *, const TQPoint &) ),
- TQT_SLOT( slotContextMenu(TDEListView*, TQListViewItem *, const TQPoint & ) ) );
- connect( this, TQT_SIGNAL( executed( TQListViewItem* ) ),
- TQT_SLOT( slotExecute( TQListViewItem * ) ) );
-
- connect( session, TQT_SIGNAL( contactAdded(const Kopete::Contact*, bool) ),
- this, TQT_SLOT( slotContactAdded(const Kopete::Contact*) ) );
- connect( session, TQT_SIGNAL( contactRemoved(const Kopete::Contact*, const TQString&, Kopete::Message::MessageFormat, bool) ),
- this, TQT_SLOT( slotContactRemoved(const Kopete::Contact*) ) );
- connect( session, TQT_SIGNAL( onlineStatusChanged( Kopete::Contact *, const Kopete::OnlineStatus & , const Kopete::OnlineStatus &) ),
- this, TQT_SLOT( slotContactStatusChanged( Kopete::Contact *, const Kopete::OnlineStatus & ) ) );
+ connect( this, TQ_SIGNAL( contextMenu( TDEListView*, TQListViewItem *, const TQPoint &) ),
+ TQ_SLOT( slotContextMenu(TDEListView*, TQListViewItem *, const TQPoint & ) ) );
+ connect( this, TQ_SIGNAL( executed( TQListViewItem* ) ),
+ TQ_SLOT( slotExecute( TQListViewItem * ) ) );
+
+ connect( session, TQ_SIGNAL( contactAdded(const Kopete::Contact*, bool) ),
+ this, TQ_SLOT( slotContactAdded(const Kopete::Contact*) ) );
+ connect( session, TQ_SIGNAL( contactRemoved(const Kopete::Contact*, const TQString&, Kopete::Message::MessageFormat, bool) ),
+ this, TQ_SLOT( slotContactRemoved(const Kopete::Contact*) ) );
+ connect( session, TQ_SIGNAL( onlineStatusChanged( Kopete::Contact *, const Kopete::OnlineStatus & , const Kopete::OnlineStatus &) ),
+ this, TQ_SLOT( slotContactStatusChanged( Kopete::Contact *, const Kopete::OnlineStatus & ) ) );
}
ChatMembersListWidget::~ChatMembersListWidget()
@@ -176,7 +176,7 @@ void ChatMembersListWidget::slotContextMenu( TDEListView*, TQListViewItem *item,
if ( ContactItem *contactItem = dynamic_cast<ContactItem*>(item) )
{
TDEPopupMenu *p = contactItem->contact()->popupMenu( session() );
- connect( p, TQT_SIGNAL( aboutToHide() ), p, TQT_SLOT( deleteLater() ) );
+ connect( p, TQ_SIGNAL( aboutToHide() ), p, TQ_SLOT( deleteLater() ) );
p->popup( point );
}
}