fix typo making wxGrid crash upon usage of PgDown: MovePageDown() is a row operation, not a column op
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57077 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -9030,7 +9030,7 @@ bool wxGrid::MovePageUp()
|
|||||||
bool wxGrid::MovePageDown()
|
bool wxGrid::MovePageDown()
|
||||||
{
|
{
|
||||||
return DoMoveCursorByPage(
|
return DoMoveCursorByPage(
|
||||||
wxGridForwardOperations(this, wxGridColumnOperations()));
|
wxGridForwardOperations(this, wxGridRowOperations()));
|
||||||
}
|
}
|
||||||
|
|
||||||
// helper of DoMoveCursorByBlock(): advance the cell coordinates using diroper
|
// helper of DoMoveCursorByBlock(): advance the cell coordinates using diroper
|
||||||
|
Reference in New Issue
Block a user