Handle the Replace button. If the find is successful, then perform replace.
(self, event=None)
| 88 | self.do_find(False) |
| 89 | |
| 90 | def replace_it(self, event=None): |
| 91 | """Handle the Replace button. |
| 92 | |
| 93 | If the find is successful, then perform replace. |
| 94 | """ |
| 95 | if self.do_find(self.ok): |
| 96 | self.do_replace() |
| 97 | |
| 98 | def default_command(self, event=None): |
| 99 | """Handle the Replace+Find button as the default command. |
nothing calls this directly
no test coverage detected