diff options
author | Michele Calgaro <[email protected]> | 2018-06-03 20:16:35 +0900 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2018-06-03 17:43:59 +0200 |
commit | 71c6d063aa2398e8b36d726ed303d5383cba18dd (patch) | |
tree | 06e8da29c7915dcf84c799728490e6270a9dea9e | |
parent | 24d3885b34f9242b222c8d65d83e14be68f8cc77 (diff) | |
download | tdewebdev-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 <[email protected]>
(cherry picked from commit c11d594b3db4b18ca49f2bc5a5b130c6c737776f)
-rw-r--r-- | tdefilereplace/tdefilereplacepart.cpp | 2 |
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"); |