diff options
Diffstat (limited to 'kmail')
-rw-r--r-- | kmail/kmreaderwin.cpp | 4 | ||||
-rw-r--r-- | kmail/kmreaderwin.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/kmail/kmreaderwin.cpp b/kmail/kmreaderwin.cpp index 0892fbf37..6e3106416 100644 --- a/kmail/kmreaderwin.cpp +++ b/kmail/kmreaderwin.cpp @@ -1017,12 +1017,12 @@ void KMReaderWin::initHtmlWidget(void) connect(mViewer,TQT_SIGNAL(popupMenu(const TQString &, const TQPoint &)), TQT_SLOT(slotUrlPopup(const TQString &, const TQPoint &))); connect( kmkernel->imProxy(), TQT_SIGNAL( sigContactPresenceChanged( const TQString & ) ), - TQT_TQOBJECT(this), TQT_SLOT( contacStatusChanged( const TQString & ) ) ); + TQT_TQOBJECT(this), TQT_SLOT( contactStatusChanged( const TQString & ) ) ); connect( kmkernel->imProxy(), TQT_SIGNAL( sigPresenceInfoExpired() ), TQT_TQOBJECT(this), TQT_SLOT( updateReaderWin() ) ); } -void KMReaderWin::contacStatusChanged( const TQString &uid) +void KMReaderWin::contactStatusChanged( const TQString &uid) { // kdDebug( 5006 ) << k_funcinfo << " got a presence change for " << uid << endl; // get the list of nodes for this contact from the htmlView diff --git a/kmail/kmreaderwin.h b/kmail/kmreaderwin.h index 7d72cd787..d31889261 100644 --- a/kmail/kmreaderwin.h +++ b/kmail/kmreaderwin.h @@ -421,7 +421,7 @@ public slots: void slotMessageArrived( KMMessage *msg ); /** start IM Chat with addressee */ void slotIMChat(); - void contacStatusChanged( const TQString &uid); + void contactStatusChanged( const TQString &uid); void slotLevelQuote( int l ); void slotTouchMessage(); |