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
e9ea02c2
Commit
e9ea02c2
authored
Oct 14, 2013
by
Allen Winter
Browse files
fix compile (-fpermissive)
parent
8bb82d72
Changes
2
Hide whitespace changes
Inline
Side-by-side
kaevent.cpp
View file @
e9ea02c2
...
...
@@ -4028,7 +4028,7 @@ void KAEventPrivate::endChanges()
/******************************************************************************
* Return a list of pointers to KAEvent objects.
*/
KAEvent
::
List
KAEvent
::
ptrList
(
const
QVector
<
KAEvent
>&
objList
)
KAEvent
::
List
KAEvent
::
ptrList
(
QVector
<
KAEvent
>&
objList
)
{
KAEvent
::
List
ptrs
;
for
(
int
i
=
0
,
count
=
objList
.
count
();
i
<
count
;
++
i
)
...
...
kaevent.h
View file @
e9ea02c2
...
...
@@ -1354,7 +1354,7 @@ class KALARMCAL_EXPORT KAEvent
#ifndef KALARMCAL_USE_KRESOURCES
/** Return a list of pointers to a list of KAEvent objects. */
static
List
ptrList
(
const
QVector
<
KAEvent
>&
events
);
static
List
ptrList
(
QVector
<
KAEvent
>&
events
);
#endif
/** Output the event's data as debug output. */
...
...
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