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
Utilities
Konsole
Commits
61cec157
Commit
61cec157
authored
Oct 03, 2022
by
Tomaz Canabrava
Browse files
Do not use deprecated calls
parent
88d62b9b
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/QuickCommands/quickcommandsplugin.cpp
View file @
61cec157
...
...
@@ -103,7 +103,7 @@ void QuickCommandsPlugin::activeViewChanged(Konsole::SessionController *controll
{
const
QString
feedbackMessage
=
QStringLiteral
(
"Please enable the plugin on Plugins -> Quick Commands"
);
const
QString
feedbackTitle
=
QStringLiteral
(
"Plugins - Quick Commands"
);
KMessageBox
::
sorry
(
terminalDisplay
->
topLevelWidget
(),
feedbackMessage
,
feedbackTitle
);
KMessageBox
::
error
(
terminalDisplay
->
topLevelWidget
(),
feedbackMessage
,
feedbackTitle
);
return
;
}
...
...
src/plugins/SSHManager/sshmanagerplugin.cpp
View file @
61cec157
...
...
@@ -141,7 +141,7 @@ void SSHManagerPlugin::activeViewChanged(Konsole::SessionController *controller,
{
const
QString
feedbackMessage
=
QStringLiteral
(
"Please enable the plugin on Plugins -> SSH Manager"
);
const
QString
feedbackTitle
=
QStringLiteral
(
"Plugins - SSH Manager"
);
KMessageBox
::
sorry
(
terminalDisplay
->
topLevelWidget
(),
feedbackMessage
,
feedbackTitle
);
KMessageBox
::
error
(
terminalDisplay
->
topLevelWidget
(),
feedbackMessage
,
feedbackTitle
);
return
;
}
...
...
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