IconEditor/IconSizeDialog.py

changeset 1131
7781e396c903
parent 945
8cd4d08fa9f6
child 2525
8b507a9a2d40
child 3366
6084bb3c3911
equal deleted inserted replaced
1130:3e9f0330f833 1131:7781e396c903
19 19
20 @param width width to be set (integer) 20 @param width width to be set (integer)
21 @param height height to be set (integer) 21 @param height height to be set (integer)
22 @param parent reference to the parent widget (QWidget) 22 @param parent reference to the parent widget (QWidget)
23 """ 23 """
24 QDialog.__init__(self, parent) 24 super().__init__(parent)
25 self.setupUi(self) 25 self.setupUi(self)
26 26
27 self.widthSpin.setValue(width) 27 self.widthSpin.setValue(width)
28 self.heightSpin.setValue(height) 28 self.heightSpin.setValue(height)
29 29

eric ide

mercurial