Graphics/ZoomDialog.py

changeset 110
c9a969db1469
parent 13
1af94a91f439
child 791
9ec2ac20e54e
equal deleted inserted replaced
109:9c72858d4b7a 110:c9a969db1469
19 """ 19 """
20 Constructor 20 Constructor
21 21
22 @param zoom zoom factor to show in the spinbox (float) 22 @param zoom zoom factor to show in the spinbox (float)
23 @param parent parent widget of this dialog (QWidget) 23 @param parent parent widget of this dialog (QWidget)
24 @param name name of this dialog (string or QString) 24 @param name name of this dialog (string)
25 """ 25 """
26 QDialog.__init__(self, parent) 26 QDialog.__init__(self, parent)
27 if name: 27 if name:
28 self.setObjectName(name) 28 self.setObjectName(name)
29 else: 29 else:

eric ide

mercurial