diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-06-03 20:16:35 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-06-03 20:16:35 +0900 |
commit | c11d594b3db4b18ca49f2bc5a5b130c6c737776f (patch) | |
tree | 4209a6280602acd5eaf0443e3fe600f7c83cabd0 /tdefilereplace | |
parent | c91feb08ba19e044205fe56c65a05d1959376873 (diff) | |
download | tdeutils-c11d594b3db4b18ca49f2bc5a5b130c6c737776f.tar.gz tdeutils-c11d594b3db4b18ca49f2bc5a5b130c6c737776f.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>
Diffstat (limited to 'tdefilereplace')
-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 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"); |