9 |
9 |
10 from PyQt4.QtGui import QDialog |
10 from PyQt4.QtGui import QDialog |
11 |
11 |
12 from .Ui_HgOptionsDialog import Ui_HgOptionsDialog |
12 from .Ui_HgOptionsDialog import Ui_HgOptionsDialog |
13 |
13 |
|
14 |
14 class HgOptionsDialog(QDialog, Ui_HgOptionsDialog): |
15 class HgOptionsDialog(QDialog, Ui_HgOptionsDialog): |
15 """ |
16 """ |
16 Class implementing a dialog to enter options used to start a project in the |
17 Class implementing a dialog to enter options used to start a project in the |
17 repository. |
18 repository. |
18 """ |
19 """ |
19 def __init__(self, vcs, project, parent = None): |
20 def __init__(self, vcs, project, parent=None): |
20 """ |
21 """ |
21 Constructor |
22 Constructor |
22 |
23 |
23 @param vcs reference to the version control object |
24 @param vcs reference to the version control object |
24 @param project reference to the project object |
25 @param project reference to the project object |