11 import os |
11 import os |
12 |
12 |
13 from PyQt6.QtCore import pyqtSlot, Qt, QProcess, QTimer |
13 from PyQt6.QtCore import pyqtSlot, Qt, QProcess, QTimer |
14 from PyQt6.QtWidgets import QDialog, QDialogButtonBox, QListWidgetItem, QLineEdit |
14 from PyQt6.QtWidgets import QDialog, QDialogButtonBox, QListWidgetItem, QLineEdit |
15 |
15 |
16 from EricWidgets import EricMessageBox |
16 from eric7.EricWidgets import EricMessageBox |
17 |
17 |
18 from .Ui_SvnChangeListsDialog import Ui_SvnChangeListsDialog |
18 from .Ui_SvnChangeListsDialog import Ui_SvnChangeListsDialog |
19 |
19 |
20 import Preferences |
20 from eric7 import Preferences |
21 from Globals import strToQByteArray |
21 from eric7.Globals import strToQByteArray |
22 |
22 |
23 |
23 |
24 class SvnChangeListsDialog(QDialog, Ui_SvnChangeListsDialog): |
24 class SvnChangeListsDialog(QDialog, Ui_SvnChangeListsDialog): |
25 """ |
25 """ |
26 Class implementing a dialog to browse the change lists. |
26 Class implementing a dialog to browse the change lists. |