Skip to content

Commit

Permalink
Merge pull request #253 from Ahuge/bugfix-232
Browse files Browse the repository at this point in the history
Fixing QItemSelectionRange for #232
  • Loading branch information
mottosso authored Nov 10, 2017
2 parents 6cba9e9 + 7b2201b commit ebf8493
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Qt.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
import shutil


__version__ = "1.1.0.b5"
__version__ = "1.1.0.b6"

# Enable support for `from Qt import *`
__all__ = []
Expand Down Expand Up @@ -109,6 +109,7 @@
"QGenericArgument",
"QGenericReturnArgument",
"QHistoryState",
"QItemSelectionRange",
"QIODevice",
"QLibraryInfo",
"QLine",
Expand Down Expand Up @@ -660,6 +661,7 @@
"QtCore.QSortFilterProxyModel": "QtCore.QSortFilterProxyModel",
"QtCore.QItemSelection": "QtCore.QItemSelection",
"QtCore.QItemSelectionModel": "QtCore.QItemSelectionModel",
"QtCore.QItemSelectionRange": "QtCore.QItemSelectionRange",
},
"PyQt5": {
"QtCore.pyqtProperty": "QtCore.Property",
Expand All @@ -670,6 +672,7 @@
"QtCore.QStringListModel": "QtCore.QStringListModel",
"QtCore.QItemSelection": "QtCore.QItemSelection",
"QtCore.QItemSelectionModel": "QtCore.QItemSelectionModel",
"QtCore.QItemSelectionRange": "QtCore.QItemSelectionRange",
},
"PySide": {
"QtGui.QAbstractProxyModel": "QtCore.QAbstractProxyModel",
Expand All @@ -680,6 +683,7 @@
"QtCore.Property": "QtCore.Property",
"QtCore.Signal": "QtCore.Signal",
"QtCore.Slot": "QtCore.Slot",
"QtGui.QItemSelectionRange": "QtCore.QItemSelectionRange",

},
"PyQt4": {
Expand All @@ -691,6 +695,7 @@
"QtCore.pyqtProperty": "QtCore.Property",
"QtCore.pyqtSignal": "QtCore.Signal",
"QtCore.pyqtSlot": "QtCore.Slot",
"QtGui.QItemSelectionRange": "QtCore.QItemSelectionRange",
}
}

Expand Down

0 comments on commit ebf8493

Please sign in to comment.