From: Richard Kimberly Heck Date: Sat, 10 Oct 2020 21:12:43 +0000 (-0400) Subject: Const X-Git-Tag: lyx-2.4.0dev-acb2ca7b~102 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=2dc42774529ed213b2e0fff42a77de7043274a66;p=features.git Const --- diff --git a/src/frontends/qt/GuiPrefs.cpp b/src/frontends/qt/GuiPrefs.cpp index 01d7d9bf9d..093efe0e55 100644 --- a/src/frontends/qt/GuiPrefs.cpp +++ b/src/frontends/qt/GuiPrefs.cpp @@ -3147,7 +3147,7 @@ void PrefShortcuts::removeShortcut() for (auto & item : items) { string shortcut = fromqstr(item->data(1, Qt::UserRole).toString()); string lfun = fromqstr(item->text(0)); - FuncRequest func = lyxaction.lookupFunc(lfun); + FuncRequest const func = lyxaction.lookupFunc(lfun); switch (itemType(*item)) { case KeyMap::System: { @@ -3203,7 +3203,7 @@ void PrefShortcuts::deactivateShortcuts(QList const & items) for (auto item : items) { string shortcut = fromqstr(item->data(1, Qt::UserRole).toString()); string lfun = fromqstr(item->text(0)); - FuncRequest func = lyxaction.lookupFunc(lfun); + FuncRequest const func = lyxaction.lookupFunc(lfun); switch (itemType(*item)) { case KeyMap::System: @@ -3376,7 +3376,7 @@ bool PrefShortcuts::validateNewShortcut(FuncRequest const & func, void PrefShortcuts::shortcutOkPressed() { QString const new_lfun = shortcut_->lfunLE->text(); - FuncRequest func = lyxaction.lookupFunc(fromqstr(new_lfun)); + FuncRequest const func = lyxaction.lookupFunc(fromqstr(new_lfun)); KeySequence k = shortcut_->shortcutWG->getKeySequence(); // save_lfun_ contains the text of the lfun to modify, if the user clicked