author | zautrix <zautrix> | 2005-11-28 01:23:07 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-11-28 01:23:07 (UTC) |
commit | 084180efc1bccba341bf3f2f718fd10cdfdaf18e (patch) (side-by-side diff) | |
tree | d464e19dd4b3e72bf553b7d083fb493e9e8405e6 /libkcal/calendar.cpp | |
parent | e08811c2246f63b2b63f9db6b65701344460f3d7 (diff) | |
download | kdepimpi-084180efc1bccba341bf3f2f718fd10cdfdaf18e.zip kdepimpi-084180efc1bccba341bf3f2f718fd10cdfdaf18e.tar.gz kdepimpi-084180efc1bccba341bf3f2f718fd10cdfdaf18e.tar.bz2 |
ync
-rw-r--r-- | libkcal/calendar.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libkcal/calendar.cpp b/libkcal/calendar.cpp index 1350f6d..9b38d3f 100644 --- a/libkcal/calendar.cpp +++ b/libkcal/calendar.cpp @@ -410,47 +410,47 @@ Incidence* Calendar::incidence( const QString& uid ) QPtrList<Todo> Calendar::todos() { QPtrList<Todo> tl = rawTodos(); mFilter->apply( &tl ); return tl; } // When this is called, the todo have already been added to the calendar. // This method is only about linking related todos void Calendar::setupRelations( Incidence *incidence ) { QString uid = incidence->uid(); - //qDebug("Calendar::setupRelations %s", incidence->summary().latin1()); + qDebug("Calendar::setupRelations %s", incidence->summary().latin1()); // First, go over the list of orphans and see if this is their parent while( Incidence* i = mOrphans[ uid ] ) { mOrphans.remove( uid ); i->setRelatedTo( incidence ); - //qDebug("Add child %s ti inc %s", i->summary().latin1(),incidence->summary().latin1()); + qDebug("Add child %s ti inc %s", i->summary().latin1(),incidence->summary().latin1()); incidence->addRelation( i ); mOrphanUids.remove( i->uid() ); } // Now see about this incidences parent if( !incidence->relatedTo() && !incidence->relatedToUid().isEmpty() ) { // This incidence has a uid it is related to, but is not registered to it yet // Try to find it - //qDebug("Test parent for %s", incidence->summary().latin1()); + qDebug("Test parent for %s", incidence->summary().latin1()); Incidence* parent = this->incidenceForUid( incidence->relatedToUid(), true ); if( parent ) { // Found it - // qDebug("parent found for for %s", incidence->summary().latin1()); + qDebug("parent found for for %s", incidence->summary().latin1()); incidence->setRelatedTo( parent ); parent->addRelation( incidence ); } else { - // qDebug("NO parent found for for %s", incidence->summary().latin1()); + qDebug("NO parent found for for %s", incidence->summary().latin1()); // Not found, put this in the mOrphans list mOrphans.insert( incidence->relatedToUid(), incidence ); mOrphanUids.insert( incidence->uid(), incidence ); } } } // If a task with subtasks is deleted, move it's subtasks to the orphans list void Calendar::removeRelations( Incidence *incidence ) { // qDebug("Calendar::removeRelations "); QString uid = incidence->uid(); |