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
918e5364
Commit
918e5364
authored
May 28, 2019
by
David Jarvie
Browse files
Improve comments
parent
964928ad
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/kaevent.cpp
View file @
918e5364
...
...
@@ -379,14 +379,13 @@ public:
// If this changes, KAEvent::convertKCalEvents() must be changed correspondingly.
// The string version is the KAlarm version string used in the calendar file.
//QT5 Fix library version
QByteArray
KAEvent
::
currentCalendarVersionString
()
{
return
QByteArray
(
"2.7.0"
);
return
QByteArray
(
"2.7.0"
);
// This is NOT the KAlarmCal library .so version!
}
int
KAEvent
::
currentCalendarVersion
()
{
return
Version
(
2
,
7
,
0
);
return
Version
(
2
,
7
,
0
);
// This is NOT the KAlarmCal library .so version!
}
// Custom calendar properties.
...
...
src/kaevent.h
View file @
918e5364
...
...
@@ -1270,12 +1270,16 @@ public:
void
endChanges
();
/** Return the current KAlarm calendar storage format version.
* This is the KAlarm version which first used the current calendar/event
* format. It is NOT the KAlarmCal library .so version!
* @return version in the format returned by KAlarmCal::Version().
* @see currentCalendarVersionString()
*/
static
int
currentCalendarVersion
();
/** Return the current KAlarm calendar storage format version.
* This is the KAlarm version which first used the current calendar/event
* format. It is NOT the KAlarmCal library .so version!
* @return version as a string in the format "1.2.3".
* @see currentCalendarVersion()
*/
...
...
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