Skip to content

Commit 331b83e

Browse files
authored
Merge pull request #408 from tbttfox/pyqt5-more-misplaced
Pyqt5 more misplaced
2 parents f186c2f + 07c231b commit 331b83e

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

Qt.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,6 @@
111111
"QFileSystemWatcher",
112112
"QGenericArgument",
113113
"QGenericReturnArgument",
114-
"QItemSelection",
115-
"QItemSelectionRange",
116114
"QIODevice",
117115
"QLibraryInfo",
118116
"QLine",
@@ -936,7 +934,6 @@ def createWidget(self, class_name, parent=None, name=""):
936934
"QtGui.QUndoStack": "QtWidgets.QUndoStack",
937935
"QtGui.QActionGroup": "QtWidgets.QActionGroup",
938936
"QtCore.QStringListModel": "QtCore.QStringListModel",
939-
"QtGui.QStringListModel": "QtCore.QStringListModel",
940937
"QtCore.Property": "QtCore.Property",
941938
"QtCore.Signal": "QtCore.Signal",
942939
"QtCore.Slot": "QtCore.Slot",
@@ -1012,13 +1009,18 @@ def createWidget(self, class_name, parent=None, name=""):
10121009
"QtCore.pyqtProperty": "QtCore.Property",
10131010
"QtCore.pyqtSignal": "QtCore.Signal",
10141011
"QtCore.pyqtSlot": "QtCore.Slot",
1012+
"QtCore.QAbstractProxyModel": "QtCore.QAbstractProxyModel",
1013+
"QtCore.QSortFilterProxyModel": "QtCore.QSortFilterProxyModel",
1014+
"QtCore.QStringListModel": "QtCore.QStringListModel",
1015+
"QtCore.QItemSelection": "QtCore.QItemSelection",
1016+
"QtCore.QItemSelectionModel": "QtCore.QItemSelectionModel",
1017+
"QtCore.QItemSelectionRange": "QtCore.QItemSelectionRange",
10151018
"uic.loadUi": ["QtCompat.loadUi", _loadUi],
10161019
"sip.wrapinstance": ["QtCompat.wrapInstance", _wrapinstance],
10171020
"sip.unwrapinstance": ["QtCompat.getCppPointer", _getcpppointer],
10181021
"sip.isdeleted": ["QtCompat.isValid", _isvalid],
10191022
"QtWidgets.qApp": "QtWidgets.QApplication.instance()",
10201023
"QtGui.QRegExpValidator": "QtGui.QRegExpValidator",
1021-
"QtCore.QSortFilterProxyModel": "QtCore.QSortFilterProxyModel",
10221024
"QtCore.QRegExp": "QtCore.QRegExp",
10231025
"QtCore.QCoreApplication.translate": [
10241026
"QtCompat.translate", _translate

0 commit comments

Comments
 (0)