Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
Akonadi Calendar
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PIM
Akonadi Calendar
Commits
4d0933cc
Commit
4d0933cc
authored
Jun 21, 2017
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor
parent
3ca3df85
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
src/scheduler_p.cpp
src/scheduler_p.cpp
+3
-5
No files found.
src/scheduler_p.cpp
View file @
4d0933cc
...
...
@@ -474,10 +474,8 @@ void Scheduler::acceptReply(const IncidenceBase::Ptr &incidenceBase,
//get matching attendee in calendar
qCDebug
(
AKONADICALENDAR_LOG
)
<<
"match found!"
;
Attendee
::
List
attendeesIn
=
incidenceBase
->
attendees
();
Attendee
::
List
attendeesEv
;
Attendee
::
List
attendeesNew
;
attendeesEv
=
incidence
->
attendees
();
Attendee
::
List
attendeesEv
=
incidence
->
attendees
();
Attendee
::
List
::
ConstIterator
inIt
;
Attendee
::
List
::
ConstIterator
evIt
;
for
(
inIt
=
attendeesIn
.
constBegin
();
inIt
!=
attendeesIn
.
constEnd
();
++
inIt
)
{
...
...
@@ -502,8 +500,8 @@ void Scheduler::acceptReply(const IncidenceBase::Ptr &incidenceBase,
}
bool
attendeeAdded
=
false
;
for
(
Attendee
::
List
::
ConstIterator
it
=
attendeesNew
.
constBegin
();
it
!=
attendeesNew
.
constEnd
()
;
++
it
)
{
for
(
Attendee
::
List
::
ConstIterator
it
=
attendeesNew
.
constBegin
()
,
end
=
attendeesNew
.
constEnd
()
;
it
!=
end
;
++
it
)
{
Attendee
::
Ptr
attNew
=
*
it
;
QString
msg
=
i18nc
(
"@info"
,
"%1 wants to attend %2 but was not invited."
,
...
...
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