eric6/QScintilla/ZoomDialog.py

changeset 8218
7c09585bd960
parent 7923
91e843545d9a
equal deleted inserted replaced
8217:385f60c94548 8218:7c09585bd960
23 @param zoom zoom factor to show in the spinbox 23 @param zoom zoom factor to show in the spinbox
24 @param parent parent widget of this dialog (QWidget) 24 @param parent parent widget of this dialog (QWidget)
25 @param name name of this dialog (string) 25 @param name name of this dialog (string)
26 @param modal modal dialog state (boolean) 26 @param modal modal dialog state (boolean)
27 """ 27 """
28 super(ZoomDialog, self).__init__(parent) 28 super().__init__(parent)
29 if name: 29 if name:
30 self.setObjectName(name) 30 self.setObjectName(name)
31 self.setupUi(self) 31 self.setupUi(self)
32 self.setModal(modal) 32 self.setModal(modal)
33 33

eric ide

mercurial