diff options
author | Timothy Pearson <[email protected]> | 2014-10-13 00:14:55 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-13 00:14:55 -0500 |
commit | 064f8056e28239c0e08a6a5443447fbb2a7ecc9d (patch) | |
tree | 75b6bec2155d32a0b5e1243b6cb41c0281a18bf5 /kate/app/katemdi.cpp | |
parent | 794af5ed134375d4f12843510a491ba20b94a7f2 (diff) | |
download | tdebase-064f8056e28239c0e08a6a5443447fbb2a7ecc9d.tar.gz tdebase-064f8056e28239c0e08a6a5443447fbb2a7ecc9d.zip |
Bring up, down, top, and bottom icons into XDG compliance
Diffstat (limited to 'kate/app/katemdi.cpp')
-rw-r--r-- | kate/app/katemdi.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kate/app/katemdi.cpp b/kate/app/katemdi.cpp index a6c657e2c..27035d48e 100644 --- a/kate/app/katemdi.cpp +++ b/kate/app/katemdi.cpp @@ -475,10 +475,10 @@ bool Sidebar::eventFilter(TQObject *obj, TQEvent *ev) p->insertItem(SmallIconSet("forward"), i18n("Right Sidebar"),1); if (position() != 2) - p->insertItem(SmallIconSet("up"), i18n("Top Sidebar"),2); + p->insertItem(SmallIconSet("go-up"), i18n("Top Sidebar"),2); if (position() != 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))); |