From kde-commits Wed Dec 31 22:48:48 2008 From: Allen Winter Date: Wed, 31 Dec 2008 22:48:48 +0000 To: kde-commits Subject: KDE/kdepimlibs/kcal (silent) Message-Id: <1230763728.075515.15334.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=123076374126895 SVN commit 903963 by winterz: very minor coding style SVN_SILENT: M +2 -1 scheduler.cpp --- trunk/KDE/kdepimlibs/kcal/scheduler.cpp #903962:903963 @@ -342,7 +342,8 @@ // try harder to find the correct incidence if ( !ev && !to ) { const Incidence::List list = mCalendar->incidences(); - for ( Incidence::List::ConstIterator it = list.constBegin(), end = list.constEnd(); it != end; ++it ) { + for ( Incidence::List::ConstIterator it=list.constBegin(), end=list.constEnd(); + it != end; ++it ) { if ( (*it)->schedulingID() == incidence->uid() ) { ev = dynamic_cast( *it ); to = dynamic_cast( *it );