From kde-commits Fri Jan 28 09:46:35 2005 From: Teemu Rytilahti Date: Fri, 28 Jan 2005 09:46:35 +0000 To: kde-commits Subject: kdepim/akregator/src Message-Id: <20050128094635.7D1701CB12 () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=110690562404292 CVS commit by rytilahti: Reimplement slotSetStatusBarText to change only the label, not the statusbar, as we have progressbar there now too. BUG:98039 M +4 -0 akregator.cpp 1.80 M +1 -0 akregator.h 1.36 --- kdepim/akregator/src/akregator.cpp #1.79:1.80 @@ -252,4 +252,8 @@ void MainWindow::slotClearStatusText() m_statusLabel->setText(QString()); } +void MainWindow::slotSetStatusBarText( const QString & text ) +{ + m_statusLabel->setText(text); +} #include "akregator.moc" --- kdepim/akregator/src/akregator.h #1.35:1.36 @@ -82,4 +82,5 @@ public: public slots: void slotClearStatusText(); + void slotSetStatusBarText(const QString &c); protected: