Branch: master

e1200afa 2014-10-11 21:45:14 Timothy Pearson
Bring previous and next icons into XDG compliance
M konversation/src/konversationmainwindow.cpp
diff --git a/konversation/src/konversationmainwindow.cpp b/konversation/src/konversationmainwindow.cpp
index 7feb617..707dd28 100644
--- a/konversation/src/konversationmainwindow.cpp
+++ b/konversation/src/konversationmainwindow.cpp
@@ -175,11 +175,11 @@
     nextShortcut.setSeq(1, KKeySequence("Alt+Right"));
     TDEShortcut prevShortcut = TDEStdAccel::tabPrev();
     prevShortcut.setSeq(1, KKeySequence("Alt+Left"));
-    action = new TDEAction(i18n("&Next Tab"), TQApplication::reverseLayout() ? "previous" : "next",
+    action = new TDEAction(i18n("&Next Tab"), TQApplication::reverseLayout() ? "go-previous" : "go-next",
         TQApplication::reverseLayout() ? prevShortcut : nextShortcut,
         m_viewContainer, TQT_SLOT(showNextView()), actionCollection(), "next_tab");
     action->setEnabled(false);
-    action = new TDEAction(i18n("&Previous Tab"), TQApplication::reverseLayout() ? "next" : "previous",
+    action = new TDEAction(i18n("&Previous Tab"), TQApplication::reverseLayout() ? "go-next" : "go-previous",
         TQApplication::reverseLayout() ? nextShortcut : prevShortcut,
         m_viewContainer, TQT_SLOT(showPreviousView()),actionCollection(),"previous_tab");
     action->setEnabled(false);