eric6/Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py

changeset 8218
7c09585bd960
parent 8151
8c1445825e7b
child 8234
fcb6b4b96274
equal deleted inserted replaced
8217:385f60c94548 8218:7c09585bd960
39 Constructor 39 Constructor
40 40
41 @param vcs reference to the vcs object 41 @param vcs reference to the vcs object
42 @param parent parent widget (QWidget) 42 @param parent parent widget (QWidget)
43 """ 43 """
44 super(SvnLogBrowserDialog, self).__init__(parent) 44 super().__init__(parent)
45 self.setupUi(self) 45 self.setupUi(self)
46 SvnDialogMixin.__init__(self) 46 SvnDialogMixin.__init__(self)
47 47
48 self.__position = QPoint() 48 self.__position = QPoint()
49 49
116 """ 116 """
117 if not self.__position.isNull(): 117 if not self.__position.isNull():
118 self.move(self.__position) 118 self.move(self.__position)
119 self.__resetUI() 119 self.__resetUI()
120 120
121 super(SvnLogBrowserDialog, self).show() 121 super().show()
122 122
123 def __resetUI(self): 123 def __resetUI(self):
124 """ 124 """
125 Private method to reset the user interface. 125 Private method to reset the user interface.
126 """ 126 """

eric ide

mercurial