diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 16:15:42 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 16:15:42 -0600 |
commit | d5b298be14c173d62e8fbc6a3803ba8f657f3dcb (patch) | |
tree | 3b542e6db3d76b64d4d58b49381328fae2035122 /kmail | |
parent | 716a5de8870d7c02bb4d0aed72f30291b17b763a (diff) | |
download | tdepim-d5b298be14c173d62e8fbc6a3803ba8f657f3dcb.tar.gz tdepim-d5b298be14c173d62e8fbc6a3803ba8f657f3dcb.zip |
Fix a few strings that contain Status
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(); |