| CODENOTIFIER | HelpYou are not signed inSign in |
Project: Editra
Revision: 55461
Author: CJP
Date: 04 Sep 2008 16:54:03
Changes:Set specific dialog title depending on search mode
Files:| ... | ...@@ -77,11 +77,11 @@ | |
| 77 | 77 | """ |
| 78 | 78 | if e_id == ed_glob.ID_FIND_REPLACE: |
| 79 | 79 | dlg = finddlg.AdvFindReplaceDlg(self._parent, self._data, |
| 80 | _("Find/Replace"), | |
| 80 | (_("Find"), _("Find/Replace")), | |
| 81 | 81 | finddlg.AFR_STYLE_REPLACEDIALOG) |
| 82 | 82 | elif e_id == ed_glob.ID_FIND: |
| 83 | 83 | dlg = finddlg.AdvFindReplaceDlg(self._parent, self._data, |
| 84 | _("Find")) | |
| 84 | (_("Find"), _("Find/Replace"))) | |
| 85 | 85 | else: |
| 86 | 86 | dlg = None |
| 87 | 87 |