From 3b4aa1cd78395c0f94b99decd901842944765746 Mon Sep 17 00:00:00 2001 From: zautrix Date: Sun, 01 Aug 2004 22:49:56 +0000 Subject: Updated migration howto --- (limited to 'libkcal/incidencebase.cpp') diff --git a/libkcal/incidencebase.cpp b/libkcal/incidencebase.cpp index d7c4595..f1db8b7 100644 --- a/libkcal/incidencebase.cpp +++ b/libkcal/incidencebase.cpp @@ -386,6 +386,7 @@ void IncidenceBase::setID( const QString & prof , int id ) } else { mExternalId += prof+";"+QString::number( id) +";0:"; } + qDebug("setID*%s*%d*%s* ", prof.latin1(), id,mExternalId.latin1() ); } int IncidenceBase::getID( const QString & prof) { @@ -398,10 +399,11 @@ int IncidenceBase::getID( const QString & prof) bool ok; ret = mExternalId.mid ( num + len,end-len-num).toInt( &ok ); if (!ok) - return -1; + ret = -1; } } - return ret; + qDebug("getID*%s*%d*%s* ", prof.latin1(), ret,mExternalId.latin1() ); + return ret; } // example :Sharp_DTM;22;23566:TP;-1;8654:TPP;18;0: @@ -420,6 +422,7 @@ void IncidenceBase::setCsum( const QString & prof , int id ) } else { mExternalId += prof+";-1;"+QString::number( id) +":"; } + qDebug("setCsum*%s*%d*%s* ", prof.latin1(), id,mExternalId.latin1() ); } int IncidenceBase::getCsum( const QString & prof) { @@ -433,9 +436,10 @@ int IncidenceBase::getCsum( const QString & prof) 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; } -- cgit v0.9.0.2