Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
Kleopatra
Commits
e47545a3
Verified
Commit
e47545a3
authored
Jun 20, 2021
by
Luca Beltrame
Browse files
Fix previous commit (copy/paste is bad)
parent
5e9d402b
Pipeline
#66721
failed with stage
in 3 minutes and 9 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/mainwindow.cpp
View file @
e47545a3
...
@@ -166,9 +166,9 @@ public:
...
@@ -166,9 +166,9 @@ public:
void
editKeybindings
()
void
editKeybindings
()
{
{
#if KXMLGUI_VERSION < QT_VERSION_CHECK(5,84,0)
#if KXMLGUI_VERSION < QT_VERSION_CHECK(5,84,0)
KShortcutsDialog
::
configure
(
actionCollection
(),
KShortcutsEditor
::
LetterShortcutsAllowed
,
this
);
KShortcutsDialog
::
configure
(
q
->
actionCollection
(),
KShortcutsEditor
::
LetterShortcutsAllowed
,
this
);
#else
#else
KShortcutsDialog
::
showDialog
(
actionCollection
(),
KShortcutsEditor
::
LetterShortcutsAllowed
,
true
/*isModal*/
,
this
);
KShortcutsDialog
::
showDialog
(
q
->
actionCollection
(),
KShortcutsEditor
::
LetterShortcutsAllowed
,
true
/*isModal*/
,
this
);
#endif
#endif
updateSearchBarClickMessage
();
updateSearchBarClickMessage
();
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment