Remove icons from pushbuttons

This commit is contained in:
Craig Drummond
2017-04-21 19:35:30 +01:00
committed by Craig Drummond
parent f282f82725
commit 14a5d3f91a
2 changed files with 0 additions and 9 deletions

View File

@@ -25,7 +25,6 @@
#include "dynamicruledialog.h"
#include "dynamic.h"
#include "support/messagebox.h"
#include "widgets/icons.h"
#include "widgets/basicitemdelegate.h"
#include <QIcon>
#include <QStandardItem>
@@ -145,11 +144,6 @@ DynamicRulesDialog::DynamicRulesDialog(QWidget *parent)
connect(addBtn, SIGNAL(clicked()), SLOT(add()));
connect(editBtn, SIGNAL(clicked()), SLOT(edit()));
connect(removeBtn, SIGNAL(clicked()), SLOT(remove()));
addBtn->setIcon(Icons::self()->addIcon);
editBtn->setIcon(Icons::self()->editIcon);
removeBtn->setIcon(Icons::self()->minusIcon);
connect(rulesList, SIGNAL(itemsSelected(bool)), SLOT(controlButtons()));
connect(nameText, SIGNAL(textChanged(const QString &)), SLOT(enableOkButton()));
connect(aboutLabel, SIGNAL(leftClickedUrl()), this, SLOT(showAbout()));