Skip to content

Commit

Permalink
Merge pull request #408 from tbttfox/pyqt5-more-misplaced
Browse files Browse the repository at this point in the history
Pyqt5 more misplaced
  • Loading branch information
mottosso committed May 17, 2024
2 parents f186c2f + 07c231b commit 331b83e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Qt.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,6 @@
"QFileSystemWatcher",
"QGenericArgument",
"QGenericReturnArgument",
"QItemSelection",
"QItemSelectionRange",
"QIODevice",
"QLibraryInfo",
"QLine",
Expand Down Expand Up @@ -936,7 +934,6 @@ def createWidget(self, class_name, parent=None, name=""):
"QtGui.QUndoStack": "QtWidgets.QUndoStack",
"QtGui.QActionGroup": "QtWidgets.QActionGroup",
"QtCore.QStringListModel": "QtCore.QStringListModel",
"QtGui.QStringListModel": "QtCore.QStringListModel",
"QtCore.Property": "QtCore.Property",
"QtCore.Signal": "QtCore.Signal",
"QtCore.Slot": "QtCore.Slot",
Expand Down Expand Up @@ -1012,13 +1009,18 @@ def createWidget(self, class_name, parent=None, name=""):
"QtCore.pyqtProperty": "QtCore.Property",
"QtCore.pyqtSignal": "QtCore.Signal",
"QtCore.pyqtSlot": "QtCore.Slot",
"QtCore.QAbstractProxyModel": "QtCore.QAbstractProxyModel",
"QtCore.QSortFilterProxyModel": "QtCore.QSortFilterProxyModel",
"QtCore.QStringListModel": "QtCore.QStringListModel",
"QtCore.QItemSelection": "QtCore.QItemSelection",
"QtCore.QItemSelectionModel": "QtCore.QItemSelectionModel",
"QtCore.QItemSelectionRange": "QtCore.QItemSelectionRange",
"uic.loadUi": ["QtCompat.loadUi", _loadUi],
"sip.wrapinstance": ["QtCompat.wrapInstance", _wrapinstance],
"sip.unwrapinstance": ["QtCompat.getCppPointer", _getcpppointer],
"sip.isdeleted": ["QtCompat.isValid", _isvalid],
"QtWidgets.qApp": "QtWidgets.QApplication.instance()",
"QtGui.QRegExpValidator": "QtGui.QRegExpValidator",
"QtCore.QSortFilterProxyModel": "QtCore.QSortFilterProxyModel",
"QtCore.QRegExp": "QtCore.QRegExp",
"QtCore.QCoreApplication.translate": [
"QtCompat.translate", _translate
Expand Down

0 comments on commit 331b83e

Please sign in to comment.