author | zautrix <zautrix> | 2005-07-06 11:26:40 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-07-06 11:26:40 (UTC) |
commit | 62a3094163367227c98494d7f69724aba4927584 (patch) (side-by-side diff) | |
tree | d48fdf9012da83a68f563f24ba72cc610b38da2f | |
parent | 7e22293b1ec1ee190ca8db6c8ecd079bafdae520 (diff) | |
download | kdepimpi-62a3094163367227c98494d7f69724aba4927584.zip kdepimpi-62a3094163367227c98494d7f69724aba4927584.tar.gz kdepimpi-62a3094163367227c98494d7f69724aba4927584.tar.bz2 |
fixx
-rw-r--r-- | korganizer/koagenda.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/korganizer/koagenda.cpp b/korganizer/koagenda.cpp index acdf5a0..b290020 100644 --- a/korganizer/koagenda.cpp +++ b/korganizer/koagenda.cpp @@ -1083,33 +1083,34 @@ void KOAgenda::endItemAction() /* oldconflictItems = modifiedItem->conflictItems(); for ( item=oldconflictItems.first(); item != 0; item=oldconflictItems.next() ) { globalFlagBlockAgendaItemUpdate = 0; item->paintMe(false); globalFlagBlockAgendaItemUpdate = 1; item->repaint(false); } */ } } - + if ( mActionItem ) + emit incidenceSelected( mActionItem->incidence() ); mScrollUpTimer.stop(); mScrollDownTimer.stop(); setCursor( arrowCursor ); mActionItem = 0; mActionType = NOP; mItemMoved = 0; } void KOAgenda::setNoActionCursor(KOAgendaItem *moveItem,QPoint viewportPos) { // kdDebug() << "viewportPos: " << viewportPos.x() << "," << viewportPos.y() << endl; // QPoint point = viewport()->mapToGlobal(viewportPos); // kdDebug() << "Global: " << point.x() << "," << point.y() << endl; // point = clipper()->mapFromGlobal(point); // kdDebug() << "clipper: " << point.x() << "," << point.y() << endl; |