Skip to content
GitLab
Menu
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
81b62b78
Verified
Commit
81b62b78
authored
Jun 20, 2021
by
Luca Beltrame
Browse files
Remove unneeded parent from function call
parent
e47545a3
Pipeline
#66757
passed with stage
in 15 minutes and 50 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
src/mainwindow.cpp
View file @
81b62b78
...
...
@@ -166,9 +166,9 @@ public:
void
editKeybindings
()
{
#if KXMLGUI_VERSION < QT_VERSION_CHECK(5,84,0)
KShortcutsDialog
::
configure
(
q
->
actionCollection
(),
KShortcutsEditor
::
LetterShortcutsAllowed
,
this
);
KShortcutsDialog
::
configure
(
q
->
actionCollection
(),
KShortcutsEditor
::
LetterShortcutsAllowed
);
#else
KShortcutsDialog
::
showDialog
(
q
->
actionCollection
(),
KShortcutsEditor
::
LetterShortcutsAllowed
,
true
/*isModal*/
,
this
);
KShortcutsDialog
::
showDialog
(
q
->
actionCollection
(),
KShortcutsEditor
::
LetterShortcutsAllowed
,
true
/*isModal*/
);
#endif
updateSearchBarClickMessage
();
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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