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
Utilities
KEditBookmarks
Commits
fc1e52c7
Commit
fc1e52c7
authored
Jun 24, 2021
by
Ahmad Samir
Browse files
Port to KXMLGUIFactory::showConfigureShortcutsDialog()
parent
5e122c92
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/actionsimpl.cpp
View file @
fc1e52c7
...
...
@@ -35,6 +35,8 @@
#include <stdlib.h>
#include "keditbookmarks_debug.h"
#include <kxmlgui_version.h>
#include <QApplication>
#include <QClipboard>
#include <QFileDialog>
...
...
@@ -72,7 +74,13 @@ void KEBApp::createActions()
// save and quit should probably not be in the toplevel???
(
void
)
KStandardAction
::
quit
(
this
,
SLOT
(
close
()),
actionCollection
());
#if KXMLGUI_VERSION >= QT_VERSION_CHECK(5, 84, 0)
KStandardAction
::
keyBindings
(
guiFactory
(),
&
KXMLGUIFactory
::
showConfigureShortcutsDialog
,
actionCollection
());
#else
KStandardAction
::
keyBindings
(
guiFactory
(),
SLOT
(
configureShortcuts
()),
actionCollection
());
#endif
(
void
)
KStandardAction
::
configureToolbars
(
this
,
SLOT
(
slotConfigureToolbars
()),
actionCollection
());
if
(
m_browser
)
{
...
...
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