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);