diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 00:13:07 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 00:13:07 -0500 |
commit | 2e9a1b54d85355bbda7ae070fb01aa774b544f68 (patch) | |
tree | 6b45b55dabd681aec522dc897c5d27491b5d11bc /src/katemdi.cpp | |
parent | d1ab2fcc2423c7fdb4ffb5491cb0d21e9e14db7e (diff) | |
download | ktechlab-2e9a1b54d85355bbda7ae070fb01aa774b544f68.tar.gz ktechlab-2e9a1b54d85355bbda7ae070fb01aa774b544f68.zip |
Bring up, down, top, and bottom icons into XDG compliance
Diffstat (limited to 'src/katemdi.cpp')
-rw-r--r-- | src/katemdi.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/katemdi.cpp b/src/katemdi.cpp index 7e4a9ff..961dd8e 100644 --- a/src/katemdi.cpp +++ b/src/katemdi.cpp @@ -411,10 +411,10 @@ bool Sidebar::eventFilter(TQObject *obj, TQEvent *ev) p->insertItem(SmallIconSet("forward"), i18n("Right Sidebar"),1); if (sidebarPosition() != 2) - p->insertItem(SmallIconSet("up"), i18n("Top Sidebar"),2); + p->insertItem(SmallIconSet("go-up"), i18n("Top Sidebar"),2); if (sidebarPosition() != 3) - p->insertItem(SmallIconSet("down"), i18n("Bottom Sidebar"),3); + p->insertItem(SmallIconSet("go-down"), i18n("Bottom Sidebar"),3); connect(p, TQT_SIGNAL(activated(int)), this, TQT_SLOT(buttonPopupActivate(int))); |