-rw-r--r-- | libkcal/incidencebase.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/libkcal/incidencebase.cpp b/libkcal/incidencebase.cpp index d7c4595..f1db8b7 100644 --- a/libkcal/incidencebase.cpp +++ b/libkcal/incidencebase.cpp @@ -385,8 +385,9 @@ void IncidenceBase::setID( const QString & prof , int id ) qDebug("Error in IncidenceBase::setID "); } else { mExternalId += prof+";"+QString::number( id) +";0:"; } + qDebug("setID*%s*%d*%s* ", prof.latin1(), id,mExternalId.latin1() ); } int IncidenceBase::getID( const QString & prof) { int ret = -1; @@ -397,11 +398,12 @@ int IncidenceBase::getID( const QString & prof) if ( end > 0 ) { bool ok; ret = mExternalId.mid ( num + len,end-len-num).toInt( &ok ); if (!ok) - return -1; + ret = -1; } } + qDebug("getID*%s*%d*%s* ", prof.latin1(), ret,mExternalId.latin1() ); return ret; } // example :Sharp_DTM;22;23566:TP;-1;8654:TPP;18;0: @@ -419,8 +421,9 @@ void IncidenceBase::setCsum( const QString & prof , int id ) qDebug("Error in IncidenceBase::setCsum "); } else { mExternalId += prof+";-1;"+QString::number( id) +":"; } + qDebug("setCsum*%s*%d*%s* ", prof.latin1(), id,mExternalId.latin1() ); } int IncidenceBase::getCsum( const QString & prof) { int ret = -1; @@ -432,11 +435,12 @@ int IncidenceBase::getCsum( const QString & prof) if ( end > 0 ) { bool ok; ret = mExternalId.mid ( num ,end-num).toInt( &ok ); if (!ok) - return -1; + ret = -1; } } + qDebug("getCsum*%s*%d*%s* ", prof.latin1(), ret,mExternalId.latin1() ); return ret; } void IncidenceBase::setIDStr( const QString & s ) |