7 Module implementing the subversion repository browser dialog. |
7 Module implementing the subversion repository browser dialog. |
8 """ |
8 """ |
9 |
9 |
10 import pysvn |
10 import pysvn |
11 |
11 |
12 from PyQt5.QtCore import Qt, pyqtSlot |
12 from PyQt6.QtCore import Qt, pyqtSlot |
13 from PyQt5.QtWidgets import ( |
13 from PyQt6.QtWidgets import ( |
14 QHeaderView, QDialog, QApplication, QDialogButtonBox, QTreeWidgetItem |
14 QHeaderView, QDialog, QApplication, QDialogButtonBox, QTreeWidgetItem |
15 ) |
15 ) |
16 |
16 |
17 from E5Gui import E5MessageBox |
17 from E5Gui import E5MessageBox |
18 from E5Gui.E5OverrideCursor import E5OverrideCursor |
18 from E5Gui.E5OverrideCursor import E5OverrideCursor |