-rw-r--r-- | libkcal/phoneformat.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libkcal/phoneformat.cpp b/libkcal/phoneformat.cpp index 99d6a06..c67dc6a 100644 --- a/libkcal/phoneformat.cpp +++ b/libkcal/phoneformat.cpp @@ -383,9 +383,13 @@ bool PhoneFormat::load( Calendar *calendar, Calendar *existingCal) fileName = locateLocal("data", "korganizer") + "\\tempfile.vcs"; #else fileName = "/tmp/kdepimtemp.vcs"; #endif +#ifdef DESKTOP_VERSION QString command ="./kammu --backup " + fileName + " -yes" ; +#else + QString command ="kammu --backup " + fileName + " -yes" ; +#endif int ret = system ( command.latin1() ); if ( ret != 0 ) { qDebug("Error::command returned %d", ret); return false; @@ -614,9 +618,13 @@ bool PhoneFormat::save( Calendar *calendar) vfsave.setLocalTime ( true ); if ( ! vfsave.save( calendar, fileName ) ) return false; // 4 call kammu +#ifdef DESKTOP_VERSION QString command ="./kammu --restore " + fileName ; +#else + QString command ="kammu --restore " + fileName ; +#endif int ret; while ( (ret = system ( command.latin1())) != 0 ) { qDebug("Error S::command returned %d. asking users", ret); int retval = KMessageBox::warningContinueCancel(0, |