summaryrefslogtreecommitdiffstats
path: root/karm
diff options
context:
space:
mode:
Diffstat (limited to 'karm')
-rw-r--r--karm/karm_part.cpp8
-rw-r--r--karm/mainwindow.cpp8
2 files changed, 8 insertions, 8 deletions
diff --git a/karm/karm_part.cpp b/karm/karm_part.cpp
index c929ba6ea..d1d6e5093 100644
--- a/karm/karm_part.cpp
+++ b/karm/karm_part.cpp
@@ -156,7 +156,7 @@ void karmPart::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");
@@ -171,21 +171,21 @@ void karmPart::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() ),
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() ),