mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Const
This commit is contained in:
parent
b28bd27932
commit
2dc4277452
@ -3147,7 +3147,7 @@ void PrefShortcuts::removeShortcut()
|
|||||||
for (auto & item : items) {
|
for (auto & item : items) {
|
||||||
string shortcut = fromqstr(item->data(1, Qt::UserRole).toString());
|
string shortcut = fromqstr(item->data(1, Qt::UserRole).toString());
|
||||||
string lfun = fromqstr(item->text(0));
|
string lfun = fromqstr(item->text(0));
|
||||||
FuncRequest func = lyxaction.lookupFunc(lfun);
|
FuncRequest const func = lyxaction.lookupFunc(lfun);
|
||||||
|
|
||||||
switch (itemType(*item)) {
|
switch (itemType(*item)) {
|
||||||
case KeyMap::System: {
|
case KeyMap::System: {
|
||||||
@ -3203,7 +3203,7 @@ void PrefShortcuts::deactivateShortcuts(QList<QTreeWidgetItem*> const & items)
|
|||||||
for (auto item : items) {
|
for (auto item : items) {
|
||||||
string shortcut = fromqstr(item->data(1, Qt::UserRole).toString());
|
string shortcut = fromqstr(item->data(1, Qt::UserRole).toString());
|
||||||
string lfun = fromqstr(item->text(0));
|
string lfun = fromqstr(item->text(0));
|
||||||
FuncRequest func = lyxaction.lookupFunc(lfun);
|
FuncRequest const func = lyxaction.lookupFunc(lfun);
|
||||||
|
|
||||||
switch (itemType(*item)) {
|
switch (itemType(*item)) {
|
||||||
case KeyMap::System:
|
case KeyMap::System:
|
||||||
@ -3376,7 +3376,7 @@ bool PrefShortcuts::validateNewShortcut(FuncRequest const & func,
|
|||||||
void PrefShortcuts::shortcutOkPressed()
|
void PrefShortcuts::shortcutOkPressed()
|
||||||
{
|
{
|
||||||
QString const new_lfun = shortcut_->lfunLE->text();
|
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();
|
KeySequence k = shortcut_->shortcutWG->getKeySequence();
|
||||||
|
|
||||||
// save_lfun_ contains the text of the lfun to modify, if the user clicked
|
// save_lfun_ contains the text of the lfun to modify, if the user clicked
|
||||||
|
Loading…
Reference in New Issue
Block a user