4 Module implementing a dialog to select multiple shelve names. |
4 Module implementing a dialog to select multiple shelve names. |
5 """ |
5 """ |
6 |
6 |
7 from __future__ import unicode_literals |
7 from __future__ import unicode_literals |
8 |
8 |
9 from PyQt4.QtCore import pyqtSlot |
9 from PyQt5.QtCore import pyqtSlot |
10 from PyQt4.QtGui import QDialog, QDialogButtonBox |
10 from PyQt5.QtWidgets import QDialog, QDialogButtonBox |
11 |
11 |
12 from .Ui_HgShelvesSelectionDialog import Ui_HgShelvesSelectionDialog |
12 from .Ui_HgShelvesSelectionDialog import Ui_HgShelvesSelectionDialog |
13 |
13 |
14 |
14 |
15 class HgShelvesSelectionDialog(QDialog, Ui_HgShelvesSelectionDialog): |
15 class HgShelvesSelectionDialog(QDialog, Ui_HgShelvesSelectionDialog): |