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
d16fa1aa
Commit
d16fa1aa
authored
Jul 25, 2019
by
David Jarvie
Browse files
Fix GCC compile warning
parent
bb2fbaec
Changes
2
Hide whitespace changes
Inline
Side-by-side
autotests/kadatetimetest.cpp
View file @
d16fa1aa
...
...
@@ -2,7 +2,7 @@
This file is part of kalarmcal library, which provides access to KAlarm
calendar data.
Copyright
(c)
2005
,2006,2010,2011,2018
David Jarvie <djarvie@kde.org>
Copyright
©
2005
-2019
David Jarvie <djarvie@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
...
...
src/karecurrence.cpp
View file @
d16fa1aa
...
...
@@ -2,7 +2,7 @@
* karecurrence.cpp - recurrence with special yearly February 29th handling
* This file is part of kalarmcal library, which provides access to KAlarm
* calendar data.
* Copyright © 2005-201
6 by
David Jarvie <djarvie@kde.org>
* Copyright © 2005-201
9
David Jarvie <djarvie@kde.org>
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as published
...
...
@@ -42,6 +42,11 @@ public:
Recurrence_p
()
:
Recurrence
()
{}
Recurrence_p
(
const
Recurrence
&
r
)
:
Recurrence
(
r
)
{}
Recurrence_p
(
const
Recurrence_p
&
r
)
:
Recurrence
(
r
)
{}
Recurrence_p
&
operator
=
(
const
Recurrence_p
&
r
)
{
Recurrence
::
operator
=
(
r
);
return
*
this
;
}
};
class
Q_DECL_HIDDEN
KARecurrence
::
Private
...
...
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