summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2018-06-03 20:16:35 +0900
committerSlávek Banko <slavek.banko@axis.cz>2018-06-03 17:43:59 +0200
commit71c6d063aa2398e8b36d726ed303d5383cba18dd (patch)
tree06e8da29c7915dcf84c799728490e6270a9dea9e
parent24d3885b34f9242b222c8d65d83e14be68f8cc77 (diff)
downloadtdewebdev-71c6d063aa2398e8b36d726ed303d5383cba18dd.tar.gz
tdewebdev-71c6d063aa2398e8b36d726ed303d5383cba18dd.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> (cherry picked from commit c11d594b3db4b18ca49f2bc5a5b130c6c737776f)
-rw-r--r--tdefilereplace/tdefilereplacepart.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tdefilereplace/tdefilereplacepart.cpp b/tdefilereplace/tdefilereplacepart.cpp
index 26736fe6..64415158 100644
--- a/tdefilereplace/tdefilereplacepart.cpp
+++ b/tdefilereplace/tdefilereplacepart.cpp
@@ -575,7 +575,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");