From 866748ee2aa568e56a2680308a6a81658c602136 Mon Sep 17 00:00:00 2001 From: David Faure Date: Wed, 16 May 2007 19:35:57 +0000 Subject: [PATCH] This should help fixing the communication between kmail and the resources :/ svn path=/branches/kdepim/enterprise/kdepim/; revision=665391 --- kmailicalIface.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kmailicalIface.h b/kmailicalIface.h index b666e4852..93295c613 100644 --- a/kmailicalIface.h +++ b/kmailicalIface.h @@ -142,12 +142,12 @@ k_dcop_signals: inline QDataStream& operator<<( QDataStream& str, const KMailICalIface::SubResource& subResource ) { - str << subResource.location << subResource.label << subResource.writable; + str << subResource.location << subResource.label << subResource.writable << subResource.alarmRelevant; return str; } inline QDataStream& operator>>( QDataStream& str, KMailICalIface::SubResource& subResource ) { - str >> subResource.location >> subResource.label >> subResource.writable; + str >> subResource.location >> subResource.label >> subResource.writable >> subResource.alarmRelevant; return str; }