Skip to content

Commit 8181d7e

Browse files
authored
Added missing sibling methods to QModelIndex
1 parent 1d4363b commit 8181d7e

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
@@ -1813,6 +1813,8 @@ class QModelIndex(sip.simplewrapper):
18131813
def column(self) -> int: ...
18141814
def row(self) -> int: ...
18151815
def child(self, arow: int, acolumn: int) -> 'QModelIndex': ...
1816+
def siblingAtColumn(self, column: int) -> 'QModelIndex': ...
1817+
def siblingAtRow(self, row: int) -> 'QModelIndex': ...
18161818

18171819

18181820
class QPersistentModelIndex(sip.simplewrapper):

0 commit comments

Comments
 (0)