7 Module implementing the browser sort filter proxy model. |
7 Module implementing the browser sort filter proxy model. |
8 """ |
8 """ |
9 |
9 |
10 from __future__ import unicode_literals |
10 from __future__ import unicode_literals |
11 |
11 |
12 from PyQt4.QtCore import QModelIndex |
12 from PyQt5.QtCore import QModelIndex, QSortFilterProxyModel |
13 from PyQt4.QtGui import QSortFilterProxyModel |
|
14 |
13 |
15 import Preferences |
14 import Preferences |
16 |
15 |
17 |
16 |
18 class BrowserSortFilterProxyModel(QSortFilterProxyModel): |
17 class BrowserSortFilterProxyModel(QSortFilterProxyModel): |