From 3af856a9c94ac4beeb7165fa8beebbb77cd7c28b Mon Sep 17 00:00:00 2001 From: Till Adam Date: Thu, 16 Sep 2004 16:38:00 +0000 Subject: [PATCH] Emit both incidenceAdded signals, so that both the kolab and the imap resource work. svn path=/trunk/kdepim/; revision=347000 --- kmailicalifaceimpl.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kmailicalifaceimpl.cpp b/kmailicalifaceimpl.cpp index b11f70970..e951084e1 100644 --- a/kmailicalifaceimpl.cpp +++ b/kmailicalifaceimpl.cpp @@ -999,8 +999,10 @@ void KMailICalIfaceImpl::slotIncidenceAdded( KMFolder* folder, kdDebug(5006) << "Insert uid: " << uid << endl; mUIDToSerNum.insert( uid, sernum ); // tell the resource if we didn't trigger this ourselves - if( !mInTransit.contains( uid ) ) + if( !mInTransit.contains( uid ) ) { incidenceAdded( type, folder->location(), s ); + incidenceAdded( type, folder->location(), sernum, format, s ); + } else mInTransit.remove( uid );