From: John L. <jr...@us...> - 2009-09-27 03:14:09
|
Update of /cvsroot/wxlua/wxLua/modules/wxluasocket/src In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv24793/wxLua/modules/wxluasocket/src Modified Files: wxluasocket_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: wxluasocket_bind.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/src/wxluasocket_bind.cpp,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** wxluasocket_bind.cpp 25 Sep 2009 18:47:58 -0000 1.35 --- wxluasocket_bind.cpp 27 Sep 2009 03:13:55 -0000 1.36 *************** *** 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 "wxluasocket/include/wxluasocket_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 "wxluasocket/include/wxluasocket_bind.h" |