diff options
Diffstat (limited to 'karm/mainwindow.cpp')
-rw-r--r-- | karm/mainwindow.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/karm/mainwindow.cpp b/karm/mainwindow.cpp index aa321de31..55fadbc07 100644 --- a/karm/mainwindow.cpp +++ b/karm/mainwindow.cpp @@ -294,7 +294,7 @@ void MainWindow::makeMenus() TQT_SLOT( newTask() ), actionCollection(), "new_task"); actionNewSub = new TDEAction( i18n("New &Subtask..."), - TQString::fromLatin1("tdemultiple"), CTRL+ALT+Key_N, + TQString::fromLatin1("application-vnd.tde.tdemultiple"), CTRL+ALT+Key_N, TQT_TQOBJECT(_taskView), TQT_SLOT( newSubTask() ), actionCollection(), "new_sub_task"); @@ -309,21 +309,21 @@ void MainWindow::makeMenus() TQT_SLOT( editTask() ), actionCollection(), "edit_task"); // actionAddComment = new TDEAction( i18n("&Add Comment..."), -// TQString::fromLatin1("document"), +// TQString::fromLatin1("text-x-generic"), // CTRL+ALT+Key_E, // TQT_TQOBJECT(_taskView), // TQT_SLOT( addCommentToTask() ), // actionCollection(), // "add_comment_to_task"); actionMarkAsComplete = new TDEAction( i18n("&Mark as Complete"), - TQString::fromLatin1("document"), + TQString::fromLatin1("text-x-generic"), CTRL+Key_M, TQT_TQOBJECT(_taskView), TQT_SLOT( markTaskAsComplete() ), actionCollection(), "mark_as_complete"); actionMarkAsIncomplete = new TDEAction( i18n("&Mark as Incomplete"), - TQString::fromLatin1("document"), + TQString::fromLatin1("text-x-generic"), CTRL+Key_M, TQT_TQOBJECT(_taskView), TQT_SLOT( markTaskAsIncomplete() ), |