From: John L. <jr...@us...> - 2007-07-04 14:46:15
|
Update of /cvsroot/wxlua/wxLua/bindings/wxaui In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv27321/wxLua/bindings/wxaui Modified Files: aui.i Log Message: Fix for wxABI_VERSION being broken in 2.8.4 (release = 99 for some reason) Index: aui.i =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/wxaui/aui.i,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** aui.i 4 Jul 2007 05:39:13 -0000 1.1 --- aui.i 4 Jul 2007 14:46:11 -0000 1.2 *************** *** 242,250 **** virtual void Split(size_t page, int direction); ! //#if wxABI_VERSION >= 20801 const wxAuiManager& GetAuiManager() const ! //#endif ! //#if wxABI_VERSION >= 20805 // Sets the normal font void SetNormalFont(const wxFont& font); --- 242,250 ---- virtual void Split(size_t page, int direction); ! %if (wxABI_VERSION >= 20801) const wxAuiManager& GetAuiManager() const ! %endif ! %if %wxchkver_2_8_5 //(wxABI_VERSION >= 20805) ABI version is broken <= 2.8.4 // Sets the normal font void SetNormalFont(const wxFont& font); *************** *** 264,268 **** // Gets the height of the notebook for a given page height int GetHeightForPageHeight(int pageHeight); ! //#endif %endclass --- 264,268 ---- // Gets the height of the notebook for a given page height int GetHeightForPageHeight(int pageHeight); ! %endif %endclass |