From: Robin Dunn Date: Mon, 1 Mar 1999 23:21:39 +0000 (+0000) Subject: Changes for allowing wxRA_SPECIFY_ROWS and wxRA_SPECIFY_COLS. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b8c99a930e1031db5cca0b204042ccde30ff2463 Changes for allowing wxRA_SPECIFY_ROWS and wxRA_SPECIFY_COLS. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1845 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/utils/wxPython/src/gtk/wx.cpp b/utils/wxPython/src/gtk/wx.cpp index 8a850714cf..94e8c893d5 100644 --- a/utils/wxPython/src/gtk/wx.cpp +++ b/utils/wxPython/src/gtk/wx.cpp @@ -33,8 +33,8 @@ * and things like that. * * $Log$ - * Revision 1.8 1999/02/25 07:18:51 RD - * wxPython version 2.0b5 + * Revision 1.9 1999/03/01 23:21:37 RD + * Changes for allowing wxRA_SPECIFY_ROWS and wxRA_SPECIFY_COLS. * ************************************************************************/ @@ -1267,6 +1267,8 @@ SWIGEXPORT(void,initwxc)() { PyDict_SetItemString(d,"wxCB_READONLY", PyInt_FromLong((long) wxCB_READONLY)); PyDict_SetItemString(d,"wxRA_HORIZONTAL", PyInt_FromLong((long) wxRA_HORIZONTAL)); PyDict_SetItemString(d,"wxRA_VERTICAL", PyInt_FromLong((long) wxRA_VERTICAL)); + PyDict_SetItemString(d,"wxRA_SPECIFY_ROWS", PyInt_FromLong((long) wxRA_SPECIFY_ROWS)); + PyDict_SetItemString(d,"wxRA_SPECIFY_COLS", PyInt_FromLong((long) wxRA_SPECIFY_COLS)); PyDict_SetItemString(d,"wxRB_GROUP", PyInt_FromLong((long) wxRB_GROUP)); PyDict_SetItemString(d,"wxGA_PROGRESSBAR", PyInt_FromLong((long) wxGA_PROGRESSBAR)); PyDict_SetItemString(d,"wxGA_HORIZONTAL", PyInt_FromLong((long) wxGA_HORIZONTAL)); diff --git a/utils/wxPython/src/gtk/wx.py b/utils/wxPython/src/gtk/wx.py index 8c1b843c93..fa72d1ddf8 100644 --- a/utils/wxPython/src/gtk/wx.py +++ b/utils/wxPython/src/gtk/wx.py @@ -179,6 +179,8 @@ wxCB_SORT = wxc.wxCB_SORT wxCB_READONLY = wxc.wxCB_READONLY wxRA_HORIZONTAL = wxc.wxRA_HORIZONTAL wxRA_VERTICAL = wxc.wxRA_VERTICAL +wxRA_SPECIFY_ROWS = wxc.wxRA_SPECIFY_ROWS +wxRA_SPECIFY_COLS = wxc.wxRA_SPECIFY_COLS wxRB_GROUP = wxc.wxRB_GROUP wxGA_PROGRESSBAR = wxc.wxGA_PROGRESSBAR wxGA_HORIZONTAL = wxc.wxGA_HORIZONTAL @@ -1247,8 +1249,8 @@ class wxApp(wxPyApp): #---------------------------------------------------------------------------- # # $Log$ -# Revision 1.7 1999/02/25 07:18:52 RD -# wxPython version 2.0b5 +# Revision 1.8 1999/03/01 23:21:39 RD +# Changes for allowing wxRA_SPECIFY_ROWS and wxRA_SPECIFY_COLS. # # Revision 1.11 1999/02/20 09:02:55 RD # Added wxWindow_FromHWND(hWnd) for wxMSW to construct a wxWindow from a