diff options
author | Timothy Pearson <[email protected]> | 2014-10-11 21:45:14 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-11 21:45:14 -0500 |
commit | e1200afab56252feaf86ddee1c8d932e0511fbd1 (patch) | |
tree | cdb6dcee1ce5432b2d508097dc7a9ef4e589bc26 | |
parent | f9c08538ba5fcdf87ed2985486a1821d1f530e5f (diff) | |
download | konversation-e1200afab56252feaf86ddee1c8d932e0511fbd1.tar.gz konversation-e1200afab56252feaf86ddee1c8d932e0511fbd1.zip |
Bring previous and next icons into XDG compliance
-rw-r--r-- | konversation/src/konversationmainwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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 @@ KonversationMainWindow::KonversationMainWindow() : TDEMainWindow(0,"main_window" 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); |