Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Utilities
Konsole
Commits
140ec1d7
Commit
140ec1d7
authored
Sep 02, 2020
by
Kurt Hindenburg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Port away from KToolInvocation::kdeinitExec"
This broke all the tests This reverts commit
ac8799ba
.
parent
212f4e15
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
CMakeLists.txt
CMakeLists.txt
+2
-1
src/session/SessionController.cpp
src/session/SessionController.cpp
+2
-3
No files found.
CMakeLists.txt
View file @
140ec1d7
...
...
@@ -11,7 +11,8 @@ cmake_minimum_required (VERSION 3.0 FATAL_ERROR)
# Qt 5.12 LTS EOL May 2021
set
(
QT_MIN_VERSION
"5.12.0"
)
set
(
KF5_MIN_VERSION
"5.69.0"
)
# The exact version required is not known ATM
set
(
KF5_MIN_VERSION
"5.6.0"
)
# Release script will create bugzilla versions
project
(
konsole VERSION
${
RELEASE_SERVICE_VERSION
}
)
...
...
src/session/SessionController.cpp
View file @
140ec1d7
...
...
@@ -43,6 +43,7 @@
#include <KMessageBox>
#include <KRun>
#include <KShell>
#include <KToolInvocation>
#include <KToggleAction>
#include <KSelectAction>
#include <KXmlGuiWindow>
...
...
@@ -54,7 +55,6 @@
#include <KConfigGroup>
#include <KCodecAction>
#include <KNotification>
#include <KIO/CommandLauncherJob>
// Konsole
#include "CopyInputDialog.h"
...
...
@@ -541,8 +541,7 @@ void SessionController::handleWebShortcutAction()
void
SessionController
::
configureWebShortcuts
()
{
auto
job
=
new
KIO
::
CommandLauncherJob
(
QStringLiteral
(
"kcmshell5"
),
{
QStringLiteral
(
"webshortcuts"
)
});
job
->
start
();
KToolInvocation
::
kdeinitExec
(
QStringLiteral
(
"kcmshell5"
),
{
QStringLiteral
(
"webshortcuts"
)
});
}
void
SessionController
::
sendSignal
(
QAction
*
action
)
...
...
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