From: John L. <jr...@us...> - 2007-06-06 15:20:18
|
Update of /cvsroot/wxlua/wxLua/bindings/wxwidgets In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv3229/wxLua/bindings/wxwidgets Modified Files: windows.i Log Message: Allow multiple overload functions, but pick the first one which should be the best. Remove duplicate wxWindow::SetSize Static functions are always called using '.' and never ':' Index: windows.i =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/wxwidgets/windows.i,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** windows.i 1 Jun 2007 18:19:46 -0000 1.36 --- windows.i 6 Jun 2007 15:20:15 -0000 1.37 *************** *** 267,271 **** virtual void SetSize(int width, int height) void SetSize(const wxSize& size) - virtual void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO) virtual void SetSize(const wxRect& rect) virtual void SetSizeHints(int minW, int minH, int maxW=-1, int maxH=-1, int incW=-1, int incH=-1) --- 267,270 ---- *************** *** 424,428 **** int GetOldSelection() const ! int GetSelection() const void SetOldSelection(int page) void SetSelection(int page) --- 423,427 ---- int GetOldSelection() const ! //int GetSelection() const : see wxCommandEvent void SetOldSelection(int page) void SetSelection(int page) |