22 |
22 |
23 @param width width to be set (integer) |
23 @param width width to be set (integer) |
24 @param height height to be set (integer) |
24 @param height height to be set (integer) |
25 @param parent reference to the parent widget (QWidget) |
25 @param parent reference to the parent widget (QWidget) |
26 """ |
26 """ |
27 super(IconSizeDialog, self).__init__(parent) |
27 super().__init__(parent) |
28 self.setupUi(self) |
28 self.setupUi(self) |
29 |
29 |
30 self.widthSpin.setValue(width) |
30 self.widthSpin.setValue(width) |
31 self.heightSpin.setValue(height) |
31 self.heightSpin.setValue(height) |
32 |
32 |