From: Stephan Witt Date: Mon, 6 Sep 2010 06:53:14 +0000 (+0000) Subject: correct short-cut conflict X-Git-Tag: 2.0.0~2684 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=ed4ae48e8532647494a6ff773392a5d935721b65;p=lyx.git correct short-cut conflict git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35291 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/frontends/qt4/Menus.cpp b/src/frontends/qt4/Menus.cpp index 2abf282e7c..d0003cd034 100644 --- a/src/frontends/qt4/Menus.cpp +++ b/src/frontends/qt4/Menus.cpp @@ -761,7 +761,7 @@ void MenuDefinition::expandSpellingSuggestions(BufferView const * bv) if (i > 0) add(MenuItem(MenuItem::Separator)); docstring const arg = wl.word() + " " + from_ascii(wl.lang()->lang()); - add(MenuItem(MenuItem::Command, qt_("Add to personal dictionary|c"), + add(MenuItem(MenuItem::Command, qt_("Add to personal dictionary|n"), FuncRequest(LFUN_SPELLING_ADD, arg))); add(MenuItem(MenuItem::Command, qt_("Ignore all|I"), FuncRequest(LFUN_SPELLING_IGNORE, arg)));