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
PIM
KAlarm
Commits
b23c79bf
Commit
b23c79bf
authored
Mar 12, 2022
by
David Jarvie
Browse files
Fix parameter not being updated
parent
94aaf938
Pipeline
#149186
failed with stage
in 17 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/kalarmcalendar/kadatetime.cpp
View file @
b23c79bf
...
...
@@ -609,10 +609,9 @@ bool KADateTimePrivate::equalSpec(const KADateTimePrivate& other) const
*/
QDateTime
KADateTimePrivate
::
updatedDt
(
QTimeZone
&
local
)
const
{
Q_UNUSED
(
local
)
if
(
specType
==
KADateTime
::
LocalZone
)
{
const
QTimeZone
local
=
QTimeZone
::
systemTimeZone
();
local
=
QTimeZone
::
systemTimeZone
();
if
(
mDt
.
timeZone
()
!=
local
)
{
const_cast
<
QDateTime
*>
(
&
mDt
)
->
setTimeZone
(
local
);
...
...
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