diff --git a/src/editoritemmanager.cpp b/src/editoritemmanager.cpp --- a/src/editoritemmanager.cpp +++ b/src/editoritemmanager.cpp @@ -352,10 +352,9 @@ // ETM and the KSelectionProxyModel has a bug wrt collections moves, so this is disabled. // To test this, enable the collection combo-box and remove the following assert. - qCCritical(INCIDENCEEDITOR_LOG) << "Moving between collections is disabled for now: " - << d->mItemUi->selectedCollection().id() - << d->mItem.parentCollection().id(); - Q_ASSERT_X(false, "save()", "Moving between collections is disabled for now"); + qCDebug(INCIDENCEEDITOR_LOG) << "Moving from" + << d->mItem.parentCollection().id() << "to" + << d->mItemUi->selectedCollection().id(); if (d->mItemUi->isDirty()) { d->mChanger->modifyIncidence(d->mItem, oldPayload); diff --git a/src/incidencedialog.cpp b/src/incidencedialog.cpp --- a/src/incidencedialog.cpp +++ b/src/incidencedialog.cpp @@ -644,9 +644,6 @@ mEditor->save(newIncidence); mEditor->save(result); - // TODO: Remove this once we support moving of events/todo's - mCalSelector->setEnabled(false); - // Make sure that we don't loose uid for existing incidence newIncidence->setUid(mEditor->incidence()->uid()); @@ -760,8 +757,6 @@ d->mIeDateTime->setActiveDate(activeDate); if (item.isValid()) { // We're editing d->mItemManager->load(item); - // TODO: Remove this once we support moving of events/todo's - d->mCalSelector->setEnabled(false); } else { // We're creating Q_ASSERT(d->hasSupportedPayload(item)); d->load(item);