summaryrefslogtreecommitdiffstats
path: root/kbabel/kbabel/kbabel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kbabel/kbabel/kbabel.cpp')
-rw-r--r--kbabel/kbabel/kbabel.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kbabel/kbabel/kbabel.cpp b/kbabel/kbabel/kbabel.cpp
index 4156d476..5dc2af55 100644
--- a/kbabel/kbabel/kbabel.cpp
+++ b/kbabel/kbabel/kbabel.cpp
@@ -591,15 +591,15 @@ void KBabelMW::setupActions()
buildDictMenus();
// the project menu
- action = new TDEAction(i18n("&New..."), "filenew"
+ action = new TDEAction(i18n("&New..."), "document-new"
, TQT_TQOBJECT(this), TQT_SLOT(projectNew()),actionCollection()
,"project_new");
- action = new TDEAction(i18n("&Open..."), "fileopen"
+ action = new TDEAction(i18n("&Open..."), "document-open"
, TQT_TQOBJECT(this), TQT_SLOT(projectOpen()),actionCollection()
,"project_open");
- action = new TDEAction(i18n("C&lose"), "fileclose"
+ action = new TDEAction(i18n("C&lose"), "window-close"
, TQT_TQOBJECT(this), TQT_SLOT(projectClose()),actionCollection()
,"project_close");
action->setEnabled (_project->filename() != KBabel::ProjectManager::defaultProjectName() );
@@ -646,7 +646,7 @@ void KBabelMW::setupActions()
, TQT_TQOBJECT(m_view), TQT_SLOT(diffShowOrig()),actionCollection()
,"diff_showOrig");
- action = new TDEAction(i18n("&Open File for Diff"), "fileopen" ,0
+ action = new TDEAction(i18n("&Open File for Diff"), "document-open" ,0
, TQT_TQOBJECT(m_view), TQT_SLOT(openDiffFile()),actionCollection()
,"diff_openFile");