diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-11 21:45:21 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-11 21:45:21 -0500 |
commit | 5ebe83623b61746d7ec87e82ab851b5b67ca26a0 (patch) | |
tree | b7f699e601b7b2ac747834bb6e43e0d8fa766394 /quanta | |
parent | af947ca8fc9e4b6ab779332dff79d72123f7fb37 (diff) | |
download | tdewebdev-5ebe83623b61746d7ec87e82ab851b5b67ca26a0.tar.gz tdewebdev-5ebe83623b61746d7ec87e82ab851b5b67ca26a0.zip |
Bring previous and next icons into XDG compliance
Diffstat (limited to 'quanta')
-rw-r--r-- | quanta/utility/quantabookmarks.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quanta/utility/quantabookmarks.cpp b/quanta/utility/quantabookmarks.cpp index 37151a85..8d32e20a 100644 --- a/quanta/utility/quantabookmarks.cpp +++ b/quanta/utility/quantabookmarks.cpp @@ -98,13 +98,13 @@ void QuantaBookmarks::init(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.")); |