Helpviewer/History/HistoryCompleter.py

changeset 3656
441956d8fce5
parent 3591
2f2a4a76dd22
child 4021
195a471c327b
equal deleted inserted replaced
3654:ffeb85cdc72d 3656:441956d8fce5
7 Module implementing a special completer for the history. 7 Module implementing a special completer for the history.
8 """ 8 """
9 9
10 from __future__ import unicode_literals 10 from __future__ import unicode_literals
11 11
12 from PyQt4.QtCore import Qt, QRegExp, QTimer 12 from PyQt5.QtCore import Qt, QRegExp, QTimer, QSortFilterProxyModel
13 from PyQt4.QtGui import QTableView, QAbstractItemView, QSortFilterProxyModel, \ 13 from PyQt5.QtWidgets import QTableView, QAbstractItemView, QCompleter
14 QCompleter
15 14
16 from .HistoryModel import HistoryModel 15 from .HistoryModel import HistoryModel
17 from .HistoryFilterModel import HistoryFilterModel 16 from .HistoryFilterModel import HistoryFilterModel
18 17
19 18

eric ide

mercurial