rbutil: Remove done() signal from Themes Install window.
This shadows a slot from the base class. Since it isn't used simply remove it. Change-Id: If2e524141b7ca4ab1083b4b713b2db3a0b25e6a6
This commit is contained in:
parent
12764781c6
commit
fb6840e572
2 changed files with 0 additions and 4 deletions
|
@ -325,7 +325,6 @@ void ThemesInstallWindow::install()
|
||||||
{
|
{
|
||||||
if(ui.listThemes->selectedItems().size() == 0) {
|
if(ui.listThemes->selectedItems().size() == 0) {
|
||||||
logger->addItem(tr("No themes selected, skipping"), LOGINFO);
|
logger->addItem(tr("No themes selected, skipping"), LOGINFO);
|
||||||
emit done(false);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
QStringList themes;
|
QStringList themes;
|
||||||
|
|
|
@ -45,9 +45,6 @@ class ThemesInstallWindow : public QDialog
|
||||||
public slots:
|
public slots:
|
||||||
void accept(void);
|
void accept(void);
|
||||||
|
|
||||||
signals:
|
|
||||||
void done(bool);
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Ui::ThemeInstallFrm ui;
|
Ui::ThemeInstallFrm ui;
|
||||||
HttpGet *getter;
|
HttpGet *getter;
|
||||||
|
|
Loading…
Reference in a new issue