Diffstat (limited to 'korganizer/koimportoldialog.h') (more/less context) (ignore whitespace changes)
-rw-r--r-- | korganizer/koimportoldialog.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/korganizer/koimportoldialog.h b/korganizer/koimportoldialog.h index f6a753d..c8847c5 100644 --- a/korganizer/koimportoldialog.h +++ b/korganizer/koimportoldialog.h @@ -28,56 +28,57 @@ #include <afxdisp.h> #include <libkcal/calendar.h> #include <libkcal/event.h> class QDateTime; class QListView; class OLEListViewItem; class _AppointmentItem; namespace KPIM { class CategorySelectDialog; } using namespace KCal; /** This is the base class for the calendar component editors. */ class KOImportOLdialog : public KDialogBase { Q_OBJECT public: /** Construct new IncidenceEditor. */ KOImportOLdialog( const QString &caption, Calendar *calendar, QWidget *parent ); virtual ~KOImportOLdialog(); /** Initialize editor. This function creates the tab widgets. */ void init(); public slots: signals: protected slots: void slotApply(); void slotOk(); void slotCancel(); protected: void setupFolderView(); void addFolder(OLEListViewItem* iParent, LPDISPATCH dispParent); void readCalendarData( DWORD folder ); void ol2kopiCalendar( _AppointmentItem * , bool computeRecurrence = true ); Calendar *mCalendar; QListView * mListView; + QString getUidByEmail( QString email ); private: int importedItems; }; #endif |