author | zautrix <zautrix> | 2004-10-07 10:10:08 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-10-07 10:10:08 (UTC) |
commit | 95508093d45aaf062813b7824884f964ee2d4d9a (patch) (side-by-side diff) | |
tree | 94b311ea521dfd4a26912e4e70604bb270c9f9ca | |
parent | edd36b813763c304b104f276437c2c60ee9bd1f1 (diff) | |
download | kdepimpi-95508093d45aaf062813b7824884f964ee2d4d9a.zip kdepimpi-95508093d45aaf062813b7824884f964ee2d4d9a.tar.gz kdepimpi-95508093d45aaf062813b7824884f964ee2d4d9a.tar.bz2 |
desktop fix
-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 @@ -118,24 +118,27 @@ #include "calendarview.h" #ifndef DESKTOP_VERSION #include <qtopia/alarmserver.h> #endif #ifndef _WIN32_ #include <stdlib.h> #include <stdio.h> #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; class KOBeamPrefs : public QDialog { public: KOBeamPrefs( QWidget *parent=0, const char *name=0 ) : QDialog( parent, name, true ) @@ -145,25 +148,27 @@ class KOBeamPrefs : public QDialog lay->setSpacing( 3 ); lay->setMargin( 3 ); QButtonGroup* format = new QButtonGroup( 1, Horizontal, i18n("File format"), this ); lay->addWidget( format ); format->setExclusive ( true ) ; QButtonGroup* time = new QButtonGroup(1, Horizontal, i18n("Time format"), this ); lay->addWidget( time ); time->setExclusive ( true ) ; vcal = new QRadioButton(" vCalendar ", format ); 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 ); connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) ); connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) ); resize( 200, 200 ); } bool beamVcal() { return vcal->isChecked(); } bool beamLocal() { return local->isChecked(); } private: @@ -1321,25 +1326,24 @@ void CalendarView::syncExternal( int mode ) delete calendar; updateView(); return ;//syncOK; } void CalendarView::syncSharp() { syncExternal( 0 ); } -//#include <kabc/stdaddressbook.h> bool CalendarView::importBday() { #ifndef KORG_NOKABC #ifdef DESKTOP_VERSION KABC::StdAddressBook* AddressBook = KABC::StdAddressBook::self( true ); KABC::AddressBook::Iterator it; int count = 0; for( it = AddressBook->begin(); it != AddressBook->end(); ++it ) { ++count; } QProgressBar bar(count,0 ); |