From: John L. <jr...@us...> - 2009-09-27 03:14:03
|
Update of /cvsroot/wxlua/wxLua/modules/wxlua/src In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv24793/wxLua/modules/wxlua/src Modified Files: wxlua_bind.cpp Log Message: Move wx/wxprec.h before __BORLANDC__ pragma hdrstop as it should be in cpp binding files. Move hook_cpp_binding_includes in genwxbind.lua to be written before any other code. Comment cleanup in some headers. Index: wxlua_bind.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxlua/src/wxlua_bind.cpp,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** wxlua_bind.cpp 25 Sep 2009 18:47:58 -0000 1.33 --- wxlua_bind.cpp 27 Sep 2009 03:13:55 -0000 1.34 *************** *** 5,19 **** // --------------------------------------------------------------------------- #ifdef __BORLANDC__ #pragma hdrstop #endif - #include "wx/wxprec.h" - #ifndef WX_PRECOMP #include "wx/wx.h" #endif - #include "wxlua/include/wxlstate.h" #include "wxlua/include/wxlua_bind.h" --- 5,19 ---- // --------------------------------------------------------------------------- + + #include "wx/wxprec.h" + #ifdef __BORLANDC__ #pragma hdrstop #endif #ifndef WX_PRECOMP #include "wx/wx.h" #endif #include "wxlua/include/wxlstate.h" #include "wxlua/include/wxlua_bind.h" |