2523:139f182b72f6 | 2525:8b507a9a2d40 |
---|---|
4 # | 4 # |
5 | 5 |
6 """ | 6 """ |
7 Module implementing a dialog to add a sub-repository. | 7 Module implementing a dialog to add a sub-repository. |
8 """ | 8 """ |
9 | |
10 from __future__ import unicode_literals # __IGNORE_WARNING__ | |
9 | 11 |
10 import os | 12 import os |
11 | 13 |
12 from PyQt4.QtCore import pyqtSlot | 14 from PyQt4.QtCore import pyqtSlot |
13 from PyQt4.QtGui import QDialog, QDialogButtonBox | 15 from PyQt4.QtGui import QDialog, QDialogButtonBox |
27 """ | 29 """ |
28 Constructor | 30 Constructor |
29 | 31 |
30 @param parent reference to the parent widget (QWidget) | 32 @param parent reference to the parent widget (QWidget) |
31 """ | 33 """ |
32 super().__init__(parent) | 34 super(HgAddSubrepositoryDialog, self).__init__(parent) |
33 self.setupUi(self) | 35 self.setupUi(self) |
34 | 36 |
35 self.__ok = self.buttonBox.button(QDialogButtonBox.Ok) | 37 self.__ok = self.buttonBox.button(QDialogButtonBox.Ok) |
36 self.__ok.setEnabled(False) | 38 self.__ok.setEnabled(False) |
37 | 39 |