summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2018-06-03 20:16:35 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2018-06-03 20:16:35 +0900
commitc11d594b3db4b18ca49f2bc5a5b130c6c737776f (patch)
tree4209a6280602acd5eaf0443e3fe600f7c83cabd0
parentc91feb08ba19e044205fe56c65a05d1959376873 (diff)
downloadtdeutils-c11d594b.tar.gz
tdeutils-c11d594b.zip
tdefilereplace: added default shortcut to open search/replace
window (CTRL+F as used in many editors for Find). Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--tdefilereplace/tdefilereplacepart.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tdefilereplace/tdefilereplacepart.cpp b/tdefilereplace/tdefilereplacepart.cpp
index 69aee28..455b69c 100644
--- a/tdefilereplace/tdefilereplacepart.cpp
+++ b/tdefilereplace/tdefilereplacepart.cpp
@@ -577,7 +577,7 @@ void TDEFileReplacePart::initGUI()
}
}
// File
- (void)new TDEAction(i18n("Customize Search/Replace Session..."), "projectopen", 0, TQT_TQOBJECT(this), TQT_SLOT(slotSetNewParameters()), actionCollection(), "new_project");
+ (void)new TDEAction(i18n("Customize Search/Replace Session..."), "projectopen", TDEShortcut(CTRL + Key_F), TQT_TQOBJECT(this), TQT_SLOT(slotSetNewParameters()), actionCollection(), "new_project");
(void)new TDEAction(i18n("&Search"), "filesearch", 0, TQT_TQOBJECT(this), TQT_SLOT(slotSearchingOperation()), actionCollection(), "search");
(void)new TDEAction(i18n("S&imulate"), "filesimulate", 0, TQT_TQOBJECT(this), TQT_SLOT(slotSimulatingOperation()), actionCollection(), "file_simulate");
(void)new TDEAction(i18n("&Replace"), "filereplace", 0, TQT_TQOBJECT(this), TQT_SLOT(slotReplacingOperation()), actionCollection(), "replace");