rbutil: Remove unused function.
Change-Id: I0ea5094610bcf5ccd9ef6c71a643867a0954dc96
This commit is contained in:
parent
bf17c347fc
commit
e74cde1c6e
3 changed files with 0 additions and 7 deletions
|
@ -45,7 +45,6 @@ signals:
|
|||
|
||||
|
||||
public slots:
|
||||
virtual void addItem(const QString &text)=0; //! add a string to the progress
|
||||
virtual void addItem(const QString &text, int flag)=0; //! add a string to the list, with icon
|
||||
|
||||
virtual void close()=0;
|
||||
|
|
|
@ -33,11 +33,6 @@ ProgressLoggerGui::ProgressLoggerGui(QWidget* parent): ProgressloggerInterface(p
|
|||
setRunning();
|
||||
}
|
||||
|
||||
void ProgressLoggerGui::addItem(const QString &text)
|
||||
{
|
||||
addItem(text, LOGNOICON);
|
||||
}
|
||||
|
||||
void ProgressLoggerGui::addItem(const QString &text, int flag)
|
||||
{
|
||||
QListWidgetItem* item = new QListWidgetItem(text);
|
||||
|
|
|
@ -41,7 +41,6 @@ signals:
|
|||
void closed();
|
||||
|
||||
public slots:
|
||||
virtual void addItem(const QString &text); //! add a string to the progress list
|
||||
virtual void addItem(const QString &text, int flag); //! add a string to the list
|
||||
virtual void setProgress(int, int); //! set progress bar
|
||||
|
||||
|
|
Loading…
Reference in a new issue