Graphics/UMLDialog.py

changeset 1131
7781e396c903
parent 1112
8a7d1b9d18db
child 1509
c0b5e693b0eb
equal deleted inserted replaced
1130:3e9f0330f833 1131:7781e396c903
25 Constructor 25 Constructor
26 26
27 @param parent parent widget of the view (QWidget) 27 @param parent parent widget of the view (QWidget)
28 @param name name of the view widget (string) 28 @param name name of the view widget (string)
29 """ 29 """
30 QMainWindow.__init__(self, parent) 30 super().__init__(parent)
31 31
32 if not name: 32 if not name:
33 self.setObjectName("UMLDialog") 33 self.setObjectName("UMLDialog")
34 else: 34 else:
35 self.setObjectName(name) 35 self.setObjectName(name)

eric ide

mercurial