diff options
Diffstat (limited to 'kmail/kmmainwin.cpp')
-rw-r--r-- | kmail/kmmainwin.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kmail/kmmainwin.cpp b/kmail/kmmainwin.cpp index 994219b0f..503c9a06b 100644 --- a/kmail/kmmainwin.cpp +++ b/kmail/kmmainwin.cpp @@ -66,7 +66,7 @@ KMMainWin::KMMainWin(TQWidget *) applyMainWindowSettings(KMKernel::config(), "Main Window"); - connect( KPIM::BroadcastStatus::instance(), TQT_SIGNAL( statusMsg( const TQString& ) ), + connect( KPIM::BroadcasStatus::instance(), TQT_SIGNAL( statusMsg( const TQString& ) ), this, TQT_SLOT( displayStatusMsg(const TQString&) ) ); connect(kmkernel, TQT_SIGNAL(configChanged()), @@ -122,9 +122,9 @@ void KMMainWin::displayStatusMsg(const TQString& aText) // ### FIXME: We should disable richtext/HTML (to avoid possible denial of service attacks), // but this code would double the size of the satus bar if the user hovers // over an <foo@bar.com>-style email address :-( -// text.replace("&", "&"); -// text.replace("<", "<"); -// text.replace(">", ">"); +// text.tqreplace("&", "&"); +// text.tqreplace("<", "<"); +// text.tqreplace(">", ">"); statusBar()->changeItem(text, mMessageStatusId); } |