summaryrefslogtreecommitdiffstats
path: root/kate/part
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-11 21:45:20 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-11 21:45:20 -0500
commit5fda7121692ae7115e8dd62bb28d42986fabebc3 (patch)
treecb4ae1f727cf62c62ff89c498d2e490e87596278 /kate/part
parentfee189b236ac35c8f8ea7d6f65413cfe34a0ea28 (diff)
downloadtdelibs-5fda7121692ae7115e8dd62bb28d42986fabebc3.tar.gz
tdelibs-5fda7121692ae7115e8dd62bb28d42986fabebc3.zip
Bring previous and next icons into XDG compliance
Diffstat (limited to 'kate/part')
-rw-r--r--kate/part/katebookmarks.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kate/part/katebookmarks.cpp b/kate/part/katebookmarks.cpp
index f29ec9915..2003b380e 100644
--- a/kate/part/katebookmarks.cpp
+++ b/kate/part/katebookmarks.cpp
@@ -87,13 +87,13 @@ void KateBookmarks::createActions( TDEActionCollection* ac )
m_bookmarkClear->setWhatsThis(i18n("Remove all bookmarks of the current document."));
m_goNext = new TDEAction(
- i18n("Next Bookmark"), "next", ALT + Key_PageDown,
+ i18n("Next Bookmark"), "go-next", ALT + Key_PageDown,
this, TQT_SLOT(goNext()),
ac, "bookmarks_next");
m_goNext->setWhatsThis(i18n("Go to the next bookmark."));
m_goPrevious = new TDEAction(
- i18n("Previous Bookmark"), "previous", ALT + Key_PageUp,
+ i18n("Previous Bookmark"), "go-previous", ALT + Key_PageUp,
this, TQT_SLOT(goPrevious()),
ac, "bookmarks_previous");
m_goPrevious->setWhatsThis(i18n("Go to the previous bookmark."));