summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 12:48:30 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 12:48:30 -0500
commitc473c81cc8bb5ad0d7459ab037f988656030268d (patch)
tree9590ba38e1e2d738d39b321592ac6d267842b742
parent96903c53ada7bf86ab51a750238022cdadd5f584 (diff)
downloadpiklab-c473c81cc8bb5ad0d7459ab037f988656030268d.tar.gz
piklab-c473c81cc8bb5ad0d7459ab037f988656030268d.zip
Bring undo, redo, find, and revert icons into XDG compliance
-rw-r--r--src/libgui/project_manager.cpp2
-rw-r--r--src/libgui/toplevel.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libgui/project_manager.cpp b/src/libgui/project_manager.cpp
index 1553697..2aff5a0 100644
--- a/src/libgui/project_manager.cpp
+++ b/src/libgui/project_manager.cpp
@@ -189,7 +189,7 @@ void ProjectManager::View::contextMenu(TQListViewItem *item, const TQPoint &p, i
} else {
pop.insertTitle(i18n("Project"));
pop.insertItem("configure", i18n("Options..."), TQT_TQOBJECT(&Main::toplevel()), TQT_SLOT(configureProject()));
- pop.insertItem("find", i18n("Find Files..."), TQT_TQOBJECT(&Main::toplevel()), TQT_SLOT(runKfind()));
+ pop.insertItem("edit-find", i18n("Find Files..."), TQT_TQOBJECT(&Main::toplevel()), TQT_SLOT(runKfind()));
pop.insertSeparator();
pop.insertItem("piklab_compile", i18n("Build Project"), TQT_TQOBJECT(&Main::toplevel()), TQT_SLOT(buildProject()));
pop.insertItem("trashcan_empty", i18n("Clean Project"), TQT_TQOBJECT(&Main::toplevel()), TQT_SLOT(cleanBuild()));
diff --git a/src/libgui/toplevel.cpp b/src/libgui/toplevel.cpp
index 9d9183a..bd51af2 100644
--- a/src/libgui/toplevel.cpp
+++ b/src/libgui/toplevel.cpp
@@ -307,7 +307,7 @@ MainWindow::MainWindow()
// tools
(void)new TDEAction(i18n("&Pikloops..."), 0, 0,
TQT_TQOBJECT(this), TQT_SLOT(runPikloops()), actionCollection(), "tools_pikloops");
- (void)new TDEAction(i18n("&Find Files..."), "find", 0,
+ (void)new TDEAction(i18n("&Find Files..."), "edit-find", 0,
TQT_TQOBJECT(this), TQT_SLOT(runKfind()), actionCollection(), "tools_kfind");
(void)new TDEAction(i18n("&Device Information..."), "info", 0,
TQT_TQOBJECT(this), TQT_SLOT(showDeviceInfo()), actionCollection(), "tools_device_information");