author | zautrix <zautrix> | 2004-08-01 22:49:56 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-08-01 22:49:56 (UTC) |
commit | 3b4aa1cd78395c0f94b99decd901842944765746 (patch) (side-by-side diff) | |
tree | 54921c72da527d45bf4b94d9d499f860014dd685 /libkcal/incidencebase.cpp | |
parent | ed3af1a632f953179ef3cad76ab5d99809f47d60 (diff) | |
download | kdepimpi-3b4aa1cd78395c0f94b99decd901842944765746.zip kdepimpi-3b4aa1cd78395c0f94b99decd901842944765746.tar.gz kdepimpi-3b4aa1cd78395c0f94b99decd901842944765746.tar.bz2 |
Updated migration howto
-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 @@ -388,2 +388,3 @@ void IncidenceBase::setID( const QString & prof , int id ) } + qDebug("setID*%s*%d*%s* ", prof.latin1(), id,mExternalId.latin1() ); } @@ -400,5 +401,6 @@ int IncidenceBase::getID( const QString & prof) if (!ok) - return -1; + ret = -1; } } + qDebug("getID*%s*%d*%s* ", prof.latin1(), ret,mExternalId.latin1() ); return ret; @@ -422,2 +424,3 @@ void IncidenceBase::setCsum( const QString & prof , int id ) } + qDebug("setCsum*%s*%d*%s* ", prof.latin1(), id,mExternalId.latin1() ); } @@ -435,5 +438,6 @@ int IncidenceBase::getCsum( const QString & prof) if (!ok) - return -1; + ret = -1; } } + qDebug("getCsum*%s*%d*%s* ", prof.latin1(), ret,mExternalId.latin1() ); return ret; |