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 | |
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 @@ -421,3 +421,3 @@ 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 @@ -426,3 +426,3 @@ void Calendar::setupRelations( Incidence *incidence ) 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 ); @@ -435,3 +435,3 @@ void Calendar::setupRelations( Incidence *incidence ) // 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 ); @@ -439,3 +439,3 @@ void Calendar::setupRelations( Incidence *incidence ) // Found it - // qDebug("parent found for for %s", incidence->summary().latin1()); + qDebug("parent found for for %s", incidence->summary().latin1()); incidence->setRelatedTo( parent ); @@ -443,3 +443,3 @@ void Calendar::setupRelations( Incidence *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 |