summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 00:13:17 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 00:13:17 -0500
commit96903c53ada7bf86ab51a750238022cdadd5f584 (patch)
treeda40829fbf6cb6debf2dc32e897b6925f93ad9da
parent01f81b6d539881444effcdba5df17d23821ecf3b (diff)
downloadpiklab-96903c53ada7bf86ab51a750238022cdadd5f584.tar.gz
piklab-96903c53ada7bf86ab51a750238022cdadd5f584.zip
Bring up, down, top, and bottom icons into XDG compliance
-rw-r--r--src/common/gui/editlistbox.cpp4
-rw-r--r--src/devices/pic/gui/pic_memory_editor.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/common/gui/editlistbox.cpp b/src/common/gui/editlistbox.cpp
index 3dcfe70..c583a1a 100644
--- a/src/common/gui/editlistbox.cpp
+++ b/src/common/gui/editlistbox.cpp
@@ -139,12 +139,12 @@ void EditListBox::setButtons(Buttons buttons)
delete _moveDownButton;
_moveDownButton = 0;
if ( buttons & UpDown ) {
- _moveUpButton = new KPushButton(KGuiItem(i18n("Move &Up"), "up"), this);
+ _moveUpButton = new KPushButton(KGuiItem(i18n("Move &Up"), "go-up"), this);
_moveUpButton->setEnabled(false);
_moveUpButton->show();
connect(_moveUpButton, TQT_SIGNAL(clicked()), TQT_SLOT(moveItemUp()));
_buttonsLayout->addWidget(_moveUpButton);
- _moveDownButton = new KPushButton(KGuiItem(i18n("Move &Down"), "down"), this);
+ _moveDownButton = new KPushButton(KGuiItem(i18n("Move &Down"), "go-down"), this);
_moveDownButton->setEnabled(false);
_moveDownButton->show();
connect(_moveDownButton, TQT_SIGNAL(clicked()), TQT_SLOT(moveItemDown()));
diff --git a/src/devices/pic/gui/pic_memory_editor.cpp b/src/devices/pic/gui/pic_memory_editor.cpp
index 2f5b0b7..1da730e 100644
--- a/src/devices/pic/gui/pic_memory_editor.cpp
+++ b/src/devices/pic/gui/pic_memory_editor.cpp
@@ -38,10 +38,10 @@ Pic::MemoryEditorLegend::Data::Data(const TQString &text, TQWidget *parent)
{
button = new PopupButton(text, parent);
TDEActionCollection *ac = 0;
- TDEAction *a = new TDEAction(i18n("Go to start"), "top", 0, TQT_TQOBJECT(parent), TQT_SLOT(gotoStart()), ac);
+ TDEAction *a = new TDEAction(i18n("Go to start"), "go-top", 0, TQT_TQOBJECT(parent), TQT_SLOT(gotoStart()), ac);
actions.append(a);
button->appendAction(a);
- a = new TDEAction(i18n("Go to end"), "bottom", 0, TQT_TQOBJECT(parent), TQT_SLOT(gotoEnd()), ac);
+ a = new TDEAction(i18n("Go to end"), "go-bottom", 0, TQT_TQOBJECT(parent), TQT_SLOT(gotoEnd()), ac);
actions.append(a);
button->appendAction(a);
label = new TQLabel(parent);