Skip to content

Commit ebf8493

Browse files
authored
Merge pull request #253 from Ahuge/bugfix-232
Fixing QItemSelectionRange for #232
2 parents 6cba9e9 + 7b2201b commit ebf8493

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Qt.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
import shutil
4444

4545

46-
__version__ = "1.1.0.b5"
46+
__version__ = "1.1.0.b6"
4747

4848
# Enable support for `from Qt import *`
4949
__all__ = []
@@ -109,6 +109,7 @@
109109
"QGenericArgument",
110110
"QGenericReturnArgument",
111111
"QHistoryState",
112+
"QItemSelectionRange",
112113
"QIODevice",
113114
"QLibraryInfo",
114115
"QLine",
@@ -660,6 +661,7 @@
660661
"QtCore.QSortFilterProxyModel": "QtCore.QSortFilterProxyModel",
661662
"QtCore.QItemSelection": "QtCore.QItemSelection",
662663
"QtCore.QItemSelectionModel": "QtCore.QItemSelectionModel",
664+
"QtCore.QItemSelectionRange": "QtCore.QItemSelectionRange",
663665
},
664666
"PyQt5": {
665667
"QtCore.pyqtProperty": "QtCore.Property",
@@ -670,6 +672,7 @@
670672
"QtCore.QStringListModel": "QtCore.QStringListModel",
671673
"QtCore.QItemSelection": "QtCore.QItemSelection",
672674
"QtCore.QItemSelectionModel": "QtCore.QItemSelectionModel",
675+
"QtCore.QItemSelectionRange": "QtCore.QItemSelectionRange",
673676
},
674677
"PySide": {
675678
"QtGui.QAbstractProxyModel": "QtCore.QAbstractProxyModel",
@@ -680,6 +683,7 @@
680683
"QtCore.Property": "QtCore.Property",
681684
"QtCore.Signal": "QtCore.Signal",
682685
"QtCore.Slot": "QtCore.Slot",
686+
"QtGui.QItemSelectionRange": "QtCore.QItemSelectionRange",
683687

684688
},
685689
"PyQt4": {
@@ -691,6 +695,7 @@
691695
"QtCore.pyqtProperty": "QtCore.Property",
692696
"QtCore.pyqtSignal": "QtCore.Signal",
693697
"QtCore.pyqtSlot": "QtCore.Slot",
698+
"QtGui.QItemSelectionRange": "QtCore.QItemSelectionRange",
694699
}
695700
}
696701

0 commit comments

Comments
 (0)