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
PIM Calendar Support
Commits
7fda64df
Commit
7fda64df
authored
Sep 02, 2021
by
Laurent Montel
😁
Browse files
Fix some clazy warning
parent
96845770
Pipeline
#78161
failed with stage
in 3 minutes and 59 seconds
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
src/kdatepickerpopup.cpp
View file @
7fda64df
...
...
@@ -173,7 +173,7 @@ KDatePicker *KDatePickerPopup::datePicker() const
return
d
->
mDatePicker
;
}
void
KDatePickerPopup
::
setDate
(
const
QDate
&
date
)
void
KDatePickerPopup
::
setDate
(
QDate
date
)
{
d
->
mDatePicker
->
setDate
(
date
);
}
...
...
src/kdatepickerpopup.h
View file @
7fda64df
...
...
@@ -73,7 +73,7 @@ public Q_SLOTS:
/**
* Sets the current @p date.
*/
void
setDate
(
const
QDate
&
date
);
void
setDate
(
QDate
date
);
Q_SIGNALS:
/**
...
...
src/printing/calprinter.cpp
View file @
7fda64df
...
...
@@ -74,7 +74,7 @@ void CalPrinter::init(const Akonadi::ETMCalendar::Ptr &calendar)
void
CalPrinter
::
setDateRange
(
QDate
fd
,
QDate
td
)
{
for
(
const
auto
plugin
:
mPrintPlugins
)
{
for
(
const
auto
plugin
:
std
::
as_const
(
mPrintPlugins
)
)
{
plugin
->
setDateRange
(
fd
,
td
);
}
}
...
...
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