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
libkdepim
Commits
094931a4
Commit
094931a4
authored
Sep 26, 2021
by
Laurent Montel
😁
Browse files
Remove some qOverload as we remove deprecated qt5.15 signal
parent
d542c718
Pipeline
#82751
passed with stage
in 5 minutes and 49 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/libkdepim/widgets/kcheckcombobox.cpp
View file @
094931a4
...
...
@@ -119,7 +119,7 @@ KCheckComboBox::KCheckComboBox(QWidget *parent)
:
QComboBox
(
parent
)
,
d
(
new
KCheckComboBox
::
Private
(
this
))
{
connect
(
this
,
qOverload
<
int
>
(
&
QComboBox
::
activated
)
,
this
,
[
this
]()
{
connect
(
this
,
&
QComboBox
::
activated
,
this
,
[
this
]()
{
d
->
toggleCheckState
();
});
connect
(
model
(),
&
QAbstractItemModel
::
rowsInserted
,
this
,
[
this
](
const
QModelIndex
&
index
,
int
start
,
int
end
)
{
...
...
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