32 @param replace flag indicating a replace widget |
32 @param replace flag indicating a replace widget |
33 @type bool |
33 @type bool |
34 @param parent reference to the parent widget |
34 @param parent reference to the parent widget |
35 @type QWidget |
35 @type QWidget |
36 """ |
36 """ |
37 super(HexEditSearchReplaceWidget, self).__init__(parent) |
37 super().__init__(parent) |
38 |
38 |
39 self.__replace = replace |
39 self.__replace = replace |
40 self.__editor = editor |
40 self.__editor = editor |
41 |
41 |
42 # keep this in sync with the logic in __getContent() |
42 # keep this in sync with the logic in __getContent() |