author | zautrix <zautrix> | 2005-01-11 18:17:09 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-01-11 18:17:09 (UTC) |
commit | b7753438e51d9b87da7d802ef1f5ac092e3266dd (patch) (side-by-side diff) | |
tree | 493030cc2217def407de4a1b8254a9e288b33585 | |
parent | 1ce6538c94c7eea930b439eb9c7a7dea020aaace (diff) | |
download | kdepimpi-b7753438e51d9b87da7d802ef1f5ac092e3266dd.zip kdepimpi-b7753438e51d9b87da7d802ef1f5ac092e3266dd.tar.gz kdepimpi-b7753438e51d9b87da7d802ef1f5ac092e3266dd.tar.bz2 |
ole fix
-rw-r--r-- | korganizer/koimportoldialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/korganizer/koimportoldialog.cpp b/korganizer/koimportoldialog.cpp index c0bde0d..cc13395 100644 --- a/korganizer/koimportoldialog.cpp +++ b/korganizer/koimportoldialog.cpp @@ -70,15 +70,15 @@ QDateTime mDdate2Qdtr( DATE dt) } class OLEListViewItem : public QCheckListItem { public: OLEListViewItem( QListView *parent, QString text ) : - QCheckListItem( parent, text, QCheckListItem::CheckBox ) { ; }; + QCheckListItem( parent, text, QCheckListItem::CheckBox ) { mData = 0; }; OLEListViewItem( QListViewItem *after, QString text ) : - QCheckListItem( after, text, QCheckListItem::CheckBox ) { ; }; + QCheckListItem( after, text, QCheckListItem::CheckBox ) { mData = 0; }; ~OLEListViewItem() {}; void setData( DWORD data ) {mData= data; }; DWORD data() { return mData ;}; private: DWORD mData; }; @@ -189,13 +189,13 @@ void KOImportOLdialog::addFolder(OLEListViewItem* iParent, LPDISPATCH dispParent void KOImportOLdialog::slotApply() { importedItems = 0; OLEListViewItem* child = (OLEListViewItem*) mListView->firstChild(); while ( child ) { - if ( child->isOn() ) + if ( child->isOn()&& child->data() ) readCalendarData( child->data() ); child = (OLEListViewItem*) child->itemBelow(); } QString mes = i18n("Importing complete.\n\n%1 items imported.").arg( importedItems); KMessageBox::information(this,mes); } |