55 @param parent parent widget of this window (QWidget) |
55 @param parent parent widget of this window (QWidget) |
56 @param fromEric flag indicating whether it was called from within |
56 @param fromEric flag indicating whether it was called from within |
57 eric (boolean) |
57 eric (boolean) |
58 @param project reference to the project object (Project) |
58 @param project reference to the project object (Project) |
59 """ |
59 """ |
60 super(HexEditMainWindow, self).__init__(parent) |
60 super().__init__(parent) |
61 self.setObjectName("eric6_hex_editor") |
61 self.setObjectName("eric6_hex_editor") |
62 |
62 |
63 self.__srHistory = { |
63 self.__srHistory = { |
64 "search": [], |
64 "search": [], |
65 # list of recent searches (tuple of format type index and |
65 # list of recent searches (tuple of format type index and |