summaryrefslogtreecommitdiffstats
path: root/korganizer/kogroupware.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'korganizer/kogroupware.cpp')
-rw-r--r--korganizer/kogroupware.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/korganizer/kogroupware.cpp b/korganizer/kogroupware.cpp
index 7b799eed..c4e3a607 100644
--- a/korganizer/kogroupware.cpp
+++ b/korganizer/kogroupware.cpp
@@ -191,13 +191,13 @@ void KOGroupware::incomingDirChanged( const TQString& path )
for ( it = attendees.begin(); it != attendees.end(); ++it ) {
if( (*it)->email() == receiver ) {
if ( action.startsWith( "accepted" ) )
- (*it)->setStatus( KCal::Attendee::Accepted );
+ (*it)->seStatus( KCal::Attendee::Accepted );
else if ( action.startsWith( "tentative" ) )
- (*it)->setStatus( KCal::Attendee::Tentative );
+ (*it)->seStatus( KCal::Attendee::Tentative );
else if ( KOPrefs::instance()->outlookCompatCounterProposals() && action.startsWith( "counter" ) )
- (*it)->setStatus( KCal::Attendee::Tentative );
+ (*it)->seStatus( KCal::Attendee::Tentative );
else if ( action.startsWith( "delegated" ) )
- (*it)->setStatus( KCal::Attendee::Delegated );
+ (*it)->seStatus( KCal::Attendee::Delegated );
break;
}
}