28 @param editor reference to the hex editor widget |
28 @param editor reference to the hex editor widget |
29 @type HexEditWidget |
29 @type HexEditWidget |
30 @param parent reference to the parent widget |
30 @param parent reference to the parent widget |
31 @type QWidget |
31 @type QWidget |
32 """ |
32 """ |
33 super(HexEditGotoWidget, self).__init__(parent) |
33 super().__init__(parent) |
34 self.setupUi(self) |
34 self.setupUi(self) |
35 |
35 |
36 self.__editor = editor |
36 self.__editor = editor |
37 |
37 |
38 # keep this in sync with the logic in on_gotoButton_clicked() |
38 # keep this in sync with the logic in on_gotoButton_clicked() |