aboutsummaryrefslogtreecommitdiff
path: root/src/ui/preseteditor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/preseteditor.cpp')
-rw-r--r--src/ui/preseteditor.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/ui/preseteditor.cpp b/src/ui/preseteditor.cpp
index 1b55a229d..8e5249c0c 100644
--- a/src/ui/preseteditor.cpp
+++ b/src/ui/preseteditor.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2006 by Ilya Kotov *
+ * Copyright (C) 2006-2010 by Ilya Kotov *
* forkotov02@hotmail.ru *
* *
* This program is free software; you can redistribute it and/or modify *
@@ -17,8 +17,9 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
-#include "eqpreset.h"
+#include <QIcon>
+#include "eqpreset.h"
#include "preseteditor.h"
PresetEditor::PresetEditor(QWidget *parent)
@@ -28,6 +29,8 @@ PresetEditor::PresetEditor(QWidget *parent)
setAttribute(Qt::WA_DeleteOnClose);
connect(ui.loadButton,SIGNAL(clicked()),SLOT(loadPreset()));
connect(ui.deleteButton,SIGNAL(clicked()),SLOT(deletePreset()));
+ ui.loadButton->setIcon(QIcon::fromTheme("document-open"));
+ ui.deleteButton->setIcon(QIcon::fromTheme("edit-delete"));
}