summaryrefslogtreecommitdiffstats
path: root/noatun
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 00:16:01 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 00:16:01 -0500
commit8865050b11348dbca282dbd47887d8bfd0412de7 (patch)
tree5c73c6d32821966993f73384953d33566415506a /noatun
parentfa4f1a755bb90db90b4e43692ac4078b8dedc9d2 (diff)
downloadtdemultimedia-8865050b11348dbca282dbd47887d8bfd0412de7.tar.gz
tdemultimedia-8865050b11348dbca282dbd47887d8bfd0412de7.zip
Bring up, down, top, and bottom icons into XDG compliance
Diffstat (limited to 'noatun')
-rw-r--r--noatun/library/effectview.cpp6
-rw-r--r--noatun/modules/systray/cmodule.cpp2
2 files changed, 4 insertions, 4 deletions
diff --git a/noatun/library/effectview.cpp b/noatun/library/effectview.cpp
index f312d8fb..72391b8d 100644
--- a/noatun/library/effectview.cpp
+++ b/noatun/library/effectview.cpp
@@ -116,7 +116,7 @@ void EffectView::init(void)
TQHBoxLayout *topTopLayout = new TQHBoxLayout(topTopFrame, 0, KDialog::spacingHint());
topTopLayout->setAutoAdd(true);
available = new KComboBox(false, topTopFrame);
- TQToolButton *add = newButton(BarIconSet("down", TDEIcon::SizeSmall), i18n("Add"), TQT_TQOBJECT(this), TQT_SLOT(addEffect()), topTopFrame);
+ TQToolButton *add = newButton(BarIconSet("go-down", TDEIcon::SizeSmall), i18n("Add"), TQT_TQOBJECT(this), TQT_SLOT(addEffect()), topTopFrame);
// Active
TQHGroupBox *bottomBox = new TQHGroupBox(i18n("Active Effects"), box);
@@ -153,8 +153,8 @@ void EffectView::init(void)
// the buttons
TQFrame *bottomLeftFrame = new TQFrame(bottomBox);
TQVBoxLayout *bottomLeftLayout = new TQVBoxLayout(bottomLeftFrame, 0, KDialog::spacingHint());
- up = newButton(BarIconSet("up", TDEIcon::SizeSmall), i18n("Up"), TQT_TQOBJECT(this), TQT_SLOT(moveUp()), bottomLeftFrame);
- down = newButton(BarIconSet("down", TDEIcon::SizeSmall), i18n("Down"), TQT_TQOBJECT(this), TQT_SLOT(moveDown()), bottomLeftFrame);
+ up = newButton(BarIconSet("go-up", TDEIcon::SizeSmall), i18n("Up"), TQT_TQOBJECT(this), TQT_SLOT(moveUp()), bottomLeftFrame);
+ down = newButton(BarIconSet("go-down", TDEIcon::SizeSmall), i18n("Down"), TQT_TQOBJECT(this), TQT_SLOT(moveDown()), bottomLeftFrame);
configure = newButton(BarIconSet("configure", TDEIcon::SizeSmall), i18n("Configure"), TQT_TQOBJECT(this), TQT_SLOT(configureEffect()), bottomLeftFrame);
remove = newButton(BarIconSet("remove", TDEIcon::SizeSmall), i18n("Remove"), TQT_TQOBJECT(this), TQT_SLOT(removeEffect()), bottomLeftFrame);
bottomLeftLayout->addWidget(up);
diff --git a/noatun/modules/systray/cmodule.cpp b/noatun/modules/systray/cmodule.cpp
index 0ed5e232..189d1539 100644
--- a/noatun/modules/systray/cmodule.cpp
+++ b/noatun/modules/systray/cmodule.cpp
@@ -46,7 +46,7 @@
YHModule::YHModule(TQObject *_parent)
: CModule(i18n("System Tray Icon"), i18n("Configure System Tray Icon"),
- "bottom", _parent)
+ "go-bottom", _parent)
{
TQVBoxLayout *top = new TQVBoxLayout(this);
mWidget = new YHConfigWidget(this);