author | zautrix <zautrix> | 2005-07-03 16:29:54 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-07-03 16:29:54 (UTC) |
commit | fede36a3c30dd88b7a41bd0eb2f87414bb574e6e (patch) (side-by-side diff) | |
tree | 5b46ad7cef0ea61022edff382326ef7fb46a5215 | |
parent | 9be5bd1c7e9ee829dd73f5b4a36a2f4331edf68e (diff) | |
download | kdepimpi-fede36a3c30dd88b7a41bd0eb2f87414bb574e6e.zip kdepimpi-fede36a3c30dd88b7a41bd0eb2f87414bb574e6e.tar.gz kdepimpi-fede36a3c30dd88b7a41bd0eb2f87414bb574e6e.tar.bz2 |
ggg
-rw-r--r-- | korganizer/kotodoview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/korganizer/kotodoview.cpp b/korganizer/kotodoview.cpp index 4f42c83..86e1bd9 100644 --- a/korganizer/kotodoview.cpp +++ b/korganizer/kotodoview.cpp @@ -572,33 +572,33 @@ KOTodoView::KOTodoView(Calendar *calendar,QWidget* parent,const char* name) : connect (mCategoryPopupMenu, SIGNAL (activated (int)), SLOT (changedCategories (int))); connect (mCategoryPopupMenu, SIGNAL (aboutToShow ()), SLOT (fillCategories ())); mCalPopupMenu = new QPopupMenu (this); mCalPopupMenu->setCheckable (true); connect (mCalPopupMenu, SIGNAL (activated (int)), SLOT (changedCal (int))); connect (mCalPopupMenu, SIGNAL (aboutToShow ()), SLOT (fillCal ())); mItemPopupMenu = new QPopupMenu(this); mItemPopupMenu->insertItem(i18n("Show"), this, SLOT (showTodo())); mItemPopupMenu->insertItem(i18n("Edit..."), this, SLOT (editTodo())); - mItemPopupMenu->insertItem( i18n("Delete"), this, + mItemPopupMenu->insertItem( i18n("Delete..."), this, SLOT (deleteTodo())); mItemPopupMenu->insertItem( i18n("Clone..."), this, SLOT (cloneTodo())); mItemPopupMenu->insertItem( i18n("Move..."), this, SLOT (moveTodo())); #ifndef DESKTOP_VERSION mItemPopupMenu->insertItem( i18n("Beam..."), this, SLOT (beamTodo())); #endif mItemPopupMenu->insertItem( i18n("Toggle Cancel"), this, SLOT (cancelTodo())); mItemPopupMenu->insertItem( i18n("Categories"), mCategoryPopupMenu); mItemPopupMenu->insertItem( i18n("Calendar"), mCalPopupMenu); mItemPopupMenu->insertSeparator(); mItemPopupMenu->insertItem( i18n("Start/Stop todo..."), this, SLOT (toggleRunningItem())); |