diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-07-20 05:03:16 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-07-20 05:03:16 +0200 |
commit | 9e42c866484fe0199e8b17e7c44489386173acc9 (patch) | |
tree | f2df78661fd0d0ade12113dd89f0cba0491141d6 /src/gui_w32.c | |
parent | f63db65b2418140d1bdbc032511f530234bd2496 (diff) | |
download | vim-git-9e42c866484fe0199e8b17e7c44489386173acc9.tar.gz |
patch 8.1.0197: Windows GUI: title for search/replace is wrongv8.1.0197
Problem: Windows GUI: title for search/replace is wrong.
Solution: Remove remark about doubling backslash. (closes #3230)
Diffstat (limited to 'src/gui_w32.c')
-rw-r--r-- | src/gui_w32.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/gui_w32.c b/src/gui_w32.c index 147d98b39..8574b63fa 100644 --- a/src/gui_w32.c +++ b/src/gui_w32.c @@ -2820,8 +2820,7 @@ gui_mch_find_dialog(exarg_T *eap) s_findrep_hwnd = FindText((LPFINDREPLACE) &s_findrep_struct); } - set_window_title(s_findrep_hwnd, - _("Find string (use '\\\\' to find a '\\')")); + set_window_title(s_findrep_hwnd, _("Find string")); (void)SetFocus(s_findrep_hwnd); s_findrep_is_find = TRUE; @@ -2855,8 +2854,7 @@ gui_mch_replace_dialog(exarg_T *eap) (LPFINDREPLACE) &s_findrep_struct); } - set_window_title(s_findrep_hwnd, - _("Find & Replace (use '\\\\' to find a '\\')")); + set_window_title(s_findrep_hwnd, _("Find & Replace")); (void)SetFocus(s_findrep_hwnd); s_findrep_is_find = FALSE; |