10 from PyQt4.QtCore import * |
10 from PyQt4.QtCore import * |
11 from PyQt4.QtGui import * |
11 from PyQt4.QtGui import * |
12 |
12 |
13 from .Ui_SvnRelocateDialog import Ui_SvnRelocateDialog |
13 from .Ui_SvnRelocateDialog import Ui_SvnRelocateDialog |
14 |
14 |
|
15 |
15 class SvnRelocateDialog(QDialog, Ui_SvnRelocateDialog): |
16 class SvnRelocateDialog(QDialog, Ui_SvnRelocateDialog): |
16 """ |
17 """ |
17 Class implementing a dialog to enter the data to relocate the workspace. |
18 Class implementing a dialog to enter the data to relocate the workspace. |
18 """ |
19 """ |
19 def __init__(self, currUrl, parent = None): |
20 def __init__(self, currUrl, parent=None): |
20 """ |
21 """ |
21 Constructor |
22 Constructor |
22 |
23 |
23 @param currUrl current repository URL (string) |
24 @param currUrl current repository URL (string) |
24 @param parent parent widget (QWidget) |
25 @param parent parent widget (QWidget) |