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
Plasma
Plasma Desktop
Commits
c18e1b45
Commit
c18e1b45
authored
Mar 30, 2022
by
Volker Krause
Browse files
Use non-deprecated QButtonGroup signal
parent
634734e2
Pipeline
#159184
passed with stage
in 4 minutes and 50 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
kcms/keyboard/kcm_keyboard_widget.cpp
View file @
c18e1b45
...
...
@@ -335,7 +335,7 @@ void KCMKeyboardWidget::initializeLayoutsUI()
connect
(
uiWidget
->
kdeKeySequence
,
&
KKeySequenceWidget
::
keySequenceChanged
,
this
,
&
KCMKeyboardWidget
::
alternativeShortcutChanged
);
connect
(
uiWidget
->
switchingPolicyButtonGroup
,
SIGNAL
(
buttonClicked
(
int
)),
this
,
SLOT
(
uiChanged
()));
connect
(
uiWidget
->
switchingPolicyButtonGroup
,
qOverload
<
int
>
(
&
QButtonGroup
::
button
Clicked
)
,
this
,
&
KCMKeyboardWidget
::
updateUiDefaultIndicator
);
connect
(
uiWidget
->
switchingPolicyButtonGroup
,
&
QButtonGroup
::
id
Clicked
,
this
,
&
KCMKeyboardWidget
::
updateUiDefaultIndicator
);
connect
(
uiWidget
->
xkbGrpShortcutBtn
,
&
QAbstractButton
::
clicked
,
this
,
&
KCMKeyboardWidget
::
scrollToGroupShortcut
);
connect
(
uiWidget
->
xkb3rdLevelShortcutBtn
,
&
QAbstractButton
::
clicked
,
this
,
&
KCMKeyboardWidget
::
scrollTo3rdLevelShortcut
);
...
...
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