-rw-r--r-- | libkcal/sharpformat.cpp | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/libkcal/sharpformat.cpp b/libkcal/sharpformat.cpp index f83f72e..973f19d 100644 --- a/libkcal/sharpformat.cpp +++ b/libkcal/sharpformat.cpp @@ -44,2 +44,3 @@ #include "sharpformat.h" +#include "syncdefines.h" @@ -93,3 +94,3 @@ class SharpParser : public QObject event->setZaurusUid( cSum ); - event->setZaurusStat( -2 ); + event->setZaurusStat(SYNC_TEMPSTATE_NEW_EXTERNAL ); @@ -204,3 +205,3 @@ class SharpParser : public QObject todo->setZaurusUid( cSum ); - todo->setZaurusStat( -2 ); + todo->setZaurusStat( SYNC_TEMPSTATE_NEW_EXTERNAL ); @@ -469,3 +470,3 @@ int SharpFormat::getNumFromRecord( QString answer, Incidence* inc ) inc->setZaurusUid( getCsum( templist ) ); - inc->setZaurusStat( -4 ); + inc->setZaurusStat( SYNC_TEMPSTATE_NEW_ID ); } @@ -508,3 +509,3 @@ bool SharpFormat::save( Calendar *calendar) //qDebug("i %d ", ++i); - if ( ev->zaurusStat() != -2 ) { + if ( ev->zaurusStat() != SYNC_TEMPSTATE_NEW_EXTERNAL ) { status.setText ( message + QString::number ( ++procCount ) ); @@ -512,3 +513,3 @@ bool SharpFormat::save( Calendar *calendar) QString eString = getEventString( ev ); - if ( ev->zaurusStat() == -3 ) { // delete + if ( ev->zaurusStat() == SYNC_TEMPSTATE_DELETE ) { // delete // deleting empty strings does not work. @@ -594,3 +595,3 @@ bool SharpFormat::save( Calendar *calendar) while ( to ) { - if ( to->zaurusStat() != -2 ) { + if ( to->zaurusStat() != SYNC_TEMPSTATE_NEW_EXTERNAL ) { status.setText ( message + QString::number ( ++procCount ) ); @@ -598,3 +599,3 @@ bool SharpFormat::save( Calendar *calendar) QString eString = getTodoString( to ); - if ( to->zaurusStat() == -3 ) { // delete + if ( to->zaurusStat() == SYNC_TEMPSTATE_DELETE ) { // delete // deleting empty strings does not work. |