10 import re |
10 import re |
11 |
11 |
12 from PyQt6.QtCore import pyqtSlot |
12 from PyQt6.QtCore import pyqtSlot |
13 from PyQt6.QtWidgets import QDialog |
13 from PyQt6.QtWidgets import QDialog |
14 |
14 |
|
15 from eric7 import Utilities |
|
16 from eric7.EricWidgets import EricMessageBox |
15 from eric7.EricWidgets.EricApplication import ericApp |
17 from eric7.EricWidgets.EricApplication import ericApp |
16 from eric7.EricWidgets import EricMessageBox |
|
17 |
18 |
18 from .Ui_SvnUrlSelectionDialog import Ui_SvnUrlSelectionDialog |
19 from .Ui_SvnUrlSelectionDialog import Ui_SvnUrlSelectionDialog |
19 |
|
20 from eric7 import Utilities |
|
21 |
20 |
22 |
21 |
23 class SvnUrlSelectionDialog(QDialog, Ui_SvnUrlSelectionDialog): |
22 class SvnUrlSelectionDialog(QDialog, Ui_SvnUrlSelectionDialog): |
24 """ |
23 """ |
25 Class implementing a dialog to enter the URLs for the svn diff command. |
24 Class implementing a dialog to enter the URLs for the svn diff command. |