Skip to content

Commit 5a008d9

Browse files
authored
Merge pull request #28 from TilmanK/master
Added missing sibling methods to QModelIndex
2 parents 6674673 + 8181d7e commit 5a008d9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

PyQt5-stubs/QtCore.pyi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1817,6 +1817,8 @@ class QModelIndex(sip.simplewrapper):
18171817
def column(self) -> int: ...
18181818
def row(self) -> int: ...
18191819
def child(self, arow: int, acolumn: int) -> 'QModelIndex': ...
1820+
def siblingAtColumn(self, column: int) -> 'QModelIndex': ...
1821+
def siblingAtRow(self, row: int) -> 'QModelIndex': ...
18201822

18211823

18221824
class QPersistentModelIndex(sip.simplewrapper):

0 commit comments

Comments
 (0)