diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:50 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:50 -0500 |
commit | 8b77ddccbca9763e45f50c20e7604120c39afb3a (patch) | |
tree | a53c042bd97a8ed7cd8d9e2883f7ffecff067318 /src/libgui/toplevel.cpp | |
parent | c473c81cc8bb5ad0d7459ab037f988656030268d (diff) | |
download | piklab-8b77ddccbca9763e45f50c20e7604120c39afb3a.tar.gz piklab-8b77ddccbca9763e45f50c20e7604120c39afb3a.zip |
Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance
Diffstat (limited to 'src/libgui/toplevel.cpp')
-rw-r--r-- | src/libgui/toplevel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libgui/toplevel.cpp b/src/libgui/toplevel.cpp index bd51af2..3382dfd 100644 --- a/src/libgui/toplevel.cpp +++ b/src/libgui/toplevel.cpp @@ -181,7 +181,7 @@ MainWindow::MainWindow() // file actions TDEAction *a = KStdAction::openNew(TQT_TQOBJECT(this), TQT_SLOT(newSourceFile()), actionCollection()); a->setText(i18n("&New Source File...")); - (void)new TDEAction(i18n("New hex File..."), "filenew", 0, TQT_TQOBJECT(this), TQT_SLOT(newHexFile()), + (void)new TDEAction(i18n("New hex File..."), "document-new", 0, TQT_TQOBJECT(this), TQT_SLOT(newHexFile()), actionCollection(), "file_new_hex"); KStdAction::open(TQT_TQOBJECT(this), TQT_SLOT(openFile()), actionCollection()); TDERecentFilesAction *recent = KStdAction::openRecent(TQT_TQOBJECT(this), TQT_SLOT(openRecentFile(const KURL &)), actionCollection()); @@ -233,7 +233,7 @@ MainWindow::MainWindow() recent->loadEntries(kapp->config(), "recent-projects"); (void)new TDEAction(i18n("Project Options..."), "configure", 0, TQT_TQOBJECT(this), TQT_SLOT(configureProject()), actionCollection(), "project_options"); - (void)new TDEAction(i18n("Close Project"), "fileclose", 0, + (void)new TDEAction(i18n("Close Project"), "window-close", 0, TQT_TQOBJECT(this), TQT_SLOT(closeProject()), actionCollection(), "project_close"); (void)new TDEAction(i18n("Add Source File..."), "piklab_addfile", 0, TQT_TQOBJECT(Main::_projectManager), TQT_SLOT(insertSourceFiles()), actionCollection(), "project_add_source_file"); |