summaryrefslogtreecommitdiffabout
path: root/libkcal/icalformat.cpp
authorzautrix <zautrix>2005-07-27 23:40:19 (UTC)
committer zautrix <zautrix>2005-07-27 23:40:19 (UTC)
commit27ffa2e08ebb38e71f613af3a214750442418e2c (patch) (unidiff)
treede2bb4c541ab8795ee3739526e82ca8f4e952c09 /libkcal/icalformat.cpp
parent0e38cffd7ba745f237c659e1c48080fcb25b126c (diff)
downloadkdepimpi-27ffa2e08ebb38e71f613af3a214750442418e2c.zip
kdepimpi-27ffa2e08ebb38e71f613af3a214750442418e2c.tar.gz
kdepimpi-27ffa2e08ebb38e71f613af3a214750442418e2c.tar.bz2
fixcxcx
Diffstat (limited to 'libkcal/icalformat.cpp') (more/less context) (show whitespace changes)
-rw-r--r--libkcal/icalformat.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/libkcal/icalformat.cpp b/libkcal/icalformat.cpp
index 5877406..6f3a799 100644
--- a/libkcal/icalformat.cpp
+++ b/libkcal/icalformat.cpp
@@ -52,4 +52,5 @@ using namespace KCal;
52 52
53ICalFormat::ICalFormat( ) 53ICalFormat::ICalFormat( bool pe )
54{ 54{
55 mProcessEvents = pe;
55 mImpl = new ICalFormatImpl( this ); 56 mImpl = new ICalFormatImpl( this );
@@ -191,4 +192,7 @@ QString ICalFormat::toString( Calendar *cal )
191 //qDebug(" todos "); 192 //qDebug(" todos ");
193 if ( mProcessEvents ) {
194 //qDebug("mProcessEvents ");
192 qApp->processEvents(); 195 qApp->processEvents();
193 } 196 }
197 }
194 // events 198 // events
@@ -200,2 +204,3 @@ QString ICalFormat::toString( Calendar *cal )
200 //qDebug("events "); 204 //qDebug("events ");
205 if ( mProcessEvents )
201 qApp->processEvents(); 206 qApp->processEvents();
@@ -210,2 +215,3 @@ QString ICalFormat::toString( Calendar *cal )
210 //qDebug("journals "); 215 //qDebug("journals ");
216 if ( mProcessEvents )
211 qApp->processEvents(); 217 qApp->processEvents();
@@ -215,2 +221,3 @@ QString ICalFormat::toString( Calendar *cal )
215 text = icalcomponent_as_ical_string( calendar ); 221 text = icalcomponent_as_ical_string( calendar );
222 if ( mProcessEvents )
216 qApp->processEvents(); 223 qApp->processEvents();