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
88d62b9b
Commit
88d62b9b
authored
Oct 03, 2022
by
Tomaz Canabrava
Browse files
Allow to compile in Qt6
parent
0af654d9
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/QuickCommands/quickcommandswidget.cpp
View file @
88d62b9b
...
...
@@ -76,7 +76,7 @@ QuickCommandsWidget::QuickCommandsWidget(QWidget *parent)
settings
.
beginGroup
(
QStringLiteral
(
"plugins"
));
settings
.
beginGroup
(
QStringLiteral
(
"quickcommands"
));
const
QKeySequence
def
(
Qt
::
CTRL
+
Qt
::
ALT
+
Qt
::
Key_G
);
const
QKeySequence
def
(
Qt
::
CTRL
|
Qt
::
ALT
|
Qt
::
Key_G
);
const
QString
defText
=
def
.
toString
();
const
QString
entry
=
settings
.
value
(
QStringLiteral
(
"shortcut"
),
defText
).
toString
();
const
QKeySequence
shortcutEntry
(
entry
);
...
...
src/plugins/SSHManager/sshmanagerpluginwidget.cpp
View file @
88d62b9b
...
...
@@ -140,7 +140,7 @@ SSHManagerTreeWidget::SSHManagerTreeWidget(QWidget *parent)
settings
.
beginGroup
(
QStringLiteral
(
"plugins"
));
settings
.
beginGroup
(
QStringLiteral
(
"sshplugin"
));
const
QKeySequence
def
(
Qt
::
CTRL
+
Qt
::
ALT
+
Qt
::
Key_H
);
const
QKeySequence
def
(
Qt
::
CTRL
|
Qt
::
ALT
|
Qt
::
Key_H
);
const
QString
defText
=
def
.
toString
();
const
QString
entry
=
settings
.
value
(
QStringLiteral
(
"ssh_shortcut"
),
defText
).
toString
();
const
QKeySequence
shortcutEntry
(
entry
);
...
...
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