-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) | |||
383 | fileName = locateLocal("data", "korganizer") + "\\tempfile.vcs"; | 383 | fileName = locateLocal("data", "korganizer") + "\\tempfile.vcs"; |
384 | #else | 384 | #else |
385 | fileName = "/tmp/kdepimtemp.vcs"; | 385 | fileName = "/tmp/kdepimtemp.vcs"; |
386 | #endif | 386 | #endif |
387 | #ifdef DESKTOP_VERSION | ||
387 | QString command ="./kammu --backup " + fileName + " -yes" ; | 388 | QString command ="./kammu --backup " + fileName + " -yes" ; |
389 | #else | ||
390 | QString command ="kammu --backup " + fileName + " -yes" ; | ||
391 | #endif | ||
388 | int ret = system ( command.latin1() ); | 392 | int ret = system ( command.latin1() ); |
389 | if ( ret != 0 ) { | 393 | if ( ret != 0 ) { |
390 | qDebug("Error::command returned %d", ret); | 394 | qDebug("Error::command returned %d", ret); |
391 | return false; | 395 | return false; |
@@ -614,9 +618,13 @@ bool PhoneFormat::save( Calendar *calendar) | |||
614 | vfsave.setLocalTime ( true ); | 618 | vfsave.setLocalTime ( true ); |
615 | if ( ! vfsave.save( calendar, fileName ) ) | 619 | if ( ! vfsave.save( calendar, fileName ) ) |
616 | return false; | 620 | return false; |
617 | // 4 call kammu | 621 | // 4 call kammu |
622 | #ifdef DESKTOP_VERSION | ||
618 | QString command ="./kammu --restore " + fileName ; | 623 | QString command ="./kammu --restore " + fileName ; |
624 | #else | ||
625 | QString command ="kammu --restore " + fileName ; | ||
626 | #endif | ||
619 | int ret; | 627 | int ret; |
620 | while ( (ret = system ( command.latin1())) != 0 ) { | 628 | while ( (ret = system ( command.latin1())) != 0 ) { |
621 | qDebug("Error S::command returned %d. asking users", ret); | 629 | qDebug("Error S::command returned %d. asking users", ret); |
622 | int retval = KMessageBox::warningContinueCancel(0, | 630 | int retval = KMessageBox::warningContinueCancel(0, |