-rw-r--r-- | korganizer/calendarview.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/korganizer/calendarview.cpp b/korganizer/calendarview.cpp index 1d62046..e4c067e 100644 --- a/korganizer/calendarview.cpp +++ b/korganizer/calendarview.cpp @@ -126,8 +126,11 @@ #include <unistd.h> #else #include <qprocess.h> #endif +#ifdef DESKTOP_VERSION +#include <kabc/stdaddressbook.h> +#endif using namespace KOrg; using namespace KCal; extern int globalFlagBlockAgenda; extern int globalFlagBlockStartup; @@ -153,9 +156,11 @@ class KOBeamPrefs : public QDialog ical = new QRadioButton(" iCalendar ", format ); vcal->setChecked( true ); tz = new QRadioButton(i18n(" With timezone "), time ); local = new QRadioButton(i18n(" Local time "), time ); - tz->setChecked( true ); + tz->setChecked( true );#ifdef DESKTOP_VERSION +#include <kabc/stdaddressbook.h> +#endif QPushButton * ok = new QPushButton( i18n("Beam via IR!"), this ); lay->addWidget( ok ); QPushButton * cancel = new QPushButton( i18n("Cancel"), this ); lay->addWidget( cancel ); @@ -1329,9 +1334,8 @@ void CalendarView::syncSharp() } -//#include <kabc/stdaddressbook.h> bool CalendarView::importBday() { #ifndef KORG_NOKABC |