Update of /cvsroot/wxlua/wxLua/bindings/wxwidgets
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9269/wxLua/bindings/wxwidgets
Modified Files:
gdi.i help.i
Log Message:
There is no wxDC() constructor, it's abstract
use wxUSE_HELP
Index: help.i
===================================================================
RCS file: /cvsroot/wxlua/wxLua/bindings/wxwidgets/help.i,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** help.i 18 Jun 2005 20:45:59 -0000 1.2
--- help.i 24 Jan 2006 23:19:00 -0000 1.3
***************
*** 7,10 ****
--- 7,12 ----
/////////////////////////////////////////////////////////////////////////////
+ %if wxUSE_HELP
+
///////////////////////////////////////////////////////////////////////////////
// wxHelpController and derived help controller classes
***************
*** 13,17 ****
%include "wx/help.h"
- %include "wx/helpbase.h"
%class %delete wxHelpController, wxObject
--- 15,18 ----
***************
*** 80,83 ****
--- 81,85 ----
// wxHtmlHelpData
+ %if wxUSE_WXHTML_HELP
%if wxLUA_USE_wxHtmlHelpController
***************
*** 142,146 ****
--- 144,151 ----
%endclass
+ %endif wxUSE_WXHTML_HELP
%endif wxLUA_USE_wxHtmlHelpController
+
%endif wxLUA_USE_wxHelpController
+ %endif wxUSE_HELP
Index: gdi.i
===================================================================
RCS file: /cvsroot/wxlua/wxLua/bindings/wxwidgets/gdi.i,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** gdi.i 23 Jan 2006 04:38:29 -0000 1.5
--- gdi.i 24 Jan 2006 23:19:00 -0000 1.6
***************
*** 823,827 ****
%class %delete wxDC, wxObject
! %win wxDC()
void BeginDrawing()
bool Blit(wxCoord xdest, wxCoord ydest, wxCoord width, wxCoord height, wxDC* source, wxCoord xsrc, wxCoord ysrc, int logicalFunc = wxCOPY, bool useMask = FALSE)
--- 823,827 ----
%class %delete wxDC, wxObject
! // %win wxDC() it's abstract use wxXXXDC
void BeginDrawing()
bool Blit(wxCoord xdest, wxCoord ydest, wxCoord width, wxCoord height, wxDC* source, wxCoord xsrc, wxCoord ysrc, int logicalFunc = wxCOPY, bool useMask = FALSE)
|