From 9b945ca87a1cc6f884fd6e95ead9fa23a0b5aec5 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 10 Apr 2003 15:49:00 +0000 Subject: [PATCH] SF patch [ 718899 ] wxGrid - output parameters git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@20120 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/src/grid.i | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wxPython/src/grid.i b/wxPython/src/grid.i index b8bcd62b3d..f53a0f2985 100644 --- a/wxPython/src/grid.i +++ b/wxPython/src/grid.i @@ -1033,7 +1033,7 @@ public: wxColour GetBackgroundColour() const; wxFont GetFont() const; void GetAlignment(int *OUTPUT, int *OUTPUT) const; - void GetSize(int *num_rows, int *num_cols) const; + void GetSize(int *OUTPUT, int *OUTPUT) const; bool GetOverflow() const; wxGridCellRenderer *GetRenderer(wxGrid* grid, int row, int col) const; wxGridCellEditor *GetEditor(wxGrid* grid, int row, int col) const; @@ -1715,8 +1715,8 @@ public: wxColour GetCellTextColour( int row, int col ); wxFont GetDefaultCellFont(); wxFont GetCellFont( int row, int col ); - void GetDefaultCellAlignment( int *horiz, int *vert ); - void GetCellAlignment( int row, int col, int *horiz, int *vert ); + void GetDefaultCellAlignment( int *OUTPUT, int *OUTPUT ); + void GetCellAlignment( int row, int col, int *OUTPUT, int *OUTPUT ); bool GetDefaultCellOverflow(); bool GetCellOverflow( int row, int col ); void GetCellSize( int row, int col, int *OUTPUT, int *OUTPUT );