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
PIM
KAlarm
Commits
82369401
Commit
82369401
authored
Sep 26, 2021
by
Laurent Montel
😁
Browse files
Not necessary to use qOverload here
parent
542abb2d
Pipeline
#82761
passed with stage
in 12 minutes and 2 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/lib/buttongroup.cpp
View file @
82369401
...
...
@@ -14,7 +14,7 @@
ButtonGroup
::
ButtonGroup
(
QObject
*
parent
)
:
QButtonGroup
(
parent
)
{
connect
(
this
,
qOverload
<
QAbstractButton
*>
(
&
QButtonGroup
::
buttonClicked
)
,
this
,
&
ButtonGroup
::
buttonSet
);
connect
(
this
,
&
QButtonGroup
::
buttonClicked
,
this
,
&
ButtonGroup
::
buttonSet
);
}
/******************************************************************************
...
...
Write
Preview
Supports
Markdown
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