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
KAddressBook
Commits
81301c02
Commit
81301c02
authored
Sep 26, 2021
by
Laurent Montel
😁
Browse files
Remove some qOverload as we remove deprecated qt5.15 signal
parent
ca4e283a
Pipeline
#82745
passed with stage
in 7 minutes and 37 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/printing/stylepage.cpp
View file @
81301c02
...
...
@@ -36,7 +36,7 @@ StylePage::StylePage(QWidget *parent, const QString &name)
mSortTypeCombo
->
addItem
(
i18nc
(
"@item:inlistbox Ascending sort order"
,
"Ascending"
));
mSortTypeCombo
->
addItem
(
i18nc
(
"@item:inlistbox Descending sort order"
,
"Descending"
));
connect
(
mStyleCombo
,
qOverload
<
int
>
(
&
QComboBox
::
activated
)
,
this
,
&
StylePage
::
styleChanged
);
connect
(
mStyleCombo
,
&
QComboBox
::
activated
,
this
,
&
StylePage
::
styleChanged
);
}
StylePage
::~
StylePage
()
...
...
Write
Preview
Markdown
is supported
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