From: John L. <jr...@us...> - 2007-03-09 00:15:25
|
Update of /cvsroot/wxlua/wxLua/modules/wxbindstc/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv32506/wxLua/modules/wxbindstc/src Modified Files: stc.cpp Log Message: update to 2.8 using C++ header files Index: stc.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxbindstc/src/stc.cpp,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** stc.cpp 26 Feb 2007 01:57:05 -0000 1.26 --- stc.cpp 9 Mar 2007 00:15:18 -0000 1.27 *************** *** 29,33 **** #if (wxCHECK_VERSION(2,7,1)) && (wxLUA_USE_wxColourPenBrush) ! // %wxchkver271 wxColour GetCaretLineBackground(); static int LUACALL wxLua_wxStyledTextCtrl_GetCaretLineBackground(lua_State *L) { --- 29,33 ---- #if (wxCHECK_VERSION(2,7,1)) && (wxLUA_USE_wxColourPenBrush) ! // %wxchkver_2_7_1 wxColour GetCaretLineBackground(); static int LUACALL wxLua_wxStyledTextCtrl_GetCaretLineBackground(lua_State *L) { *************** *** 48,52 **** static wxLuaArgTag s_wxluatagArray_wxLua_wxStyledTextCtrl_SetCaretLineBackground[] = { &s_wxluatag_wxColour, 0 }; ! // %wxchkver271 void SetCaretLineBackground(const wxColour& back); static int LUACALL wxLua_wxStyledTextCtrl_SetCaretLineBackground(lua_State *L) { --- 48,52 ---- static wxLuaArgTag s_wxluatagArray_wxLua_wxStyledTextCtrl_SetCaretLineBackground[] = { &s_wxluatag_wxColour, 0 }; ! // %wxchkver_2_7_1 void SetCaretLineBackground(const wxColour& back); static int LUACALL wxLua_wxStyledTextCtrl_SetCaretLineBackground(lua_State *L) { *************** *** 66,70 **** #if (wxLUA_USE_wxColourPenBrush) && (!wxCHECK_VERSION(2,7,1)) ! // !%wxchkver271 wxColour GetCaretLineBack(); static int LUACALL wxLua_wxStyledTextCtrl_GetCaretLineBack(lua_State *L) { --- 66,70 ---- #if (wxLUA_USE_wxColourPenBrush) && (!wxCHECK_VERSION(2,7,1)) ! // !%wxchkver_2_7_1 wxColour GetCaretLineBack(); static int LUACALL wxLua_wxStyledTextCtrl_GetCaretLineBack(lua_State *L) { *************** *** 85,89 **** static wxLuaArgTag s_wxluatagArray_wxLua_wxStyledTextCtrl_SetCaretLineBack[] = { &s_wxluatag_wxColour, 0 }; ! // !%wxchkver271 void SetCaretLineBack(const wxColour& back); static int LUACALL wxLua_wxStyledTextCtrl_SetCaretLineBack(lua_State *L) { --- 85,89 ---- static wxLuaArgTag s_wxluatagArray_wxLua_wxStyledTextCtrl_SetCaretLineBack[] = { &s_wxluatag_wxColour, 0 }; ! // !%wxchkver_2_7_1 void SetCaretLineBack(const wxColour& back); static int LUACALL wxLua_wxStyledTextCtrl_SetCaretLineBack(lua_State *L) { *************** *** 4537,4541 **** wxStyledTextCtrl * self = (wxStyledTextCtrl *)wxlState.GetUserDataType(1, s_wxluatag_wxStyledTextCtrl); // call GetDocPointer ! returns = self->GetDocPointer(); // push the result pointer lua_pushlightuserdata(L, (void *)returns); --- 4537,4541 ---- wxStyledTextCtrl * self = (wxStyledTextCtrl *)wxlState.GetUserDataType(1, s_wxluatag_wxStyledTextCtrl); // call GetDocPointer ! returns = (void *)self->GetDocPointer(); // push the result pointer lua_pushlightuserdata(L, (void *)returns); *************** *** 4769,4773 **** wxStyledTextCtrl * self = (wxStyledTextCtrl *)wxlState.GetUserDataType(1, s_wxluatag_wxStyledTextCtrl); // call CreateDocument ! returns = self->CreateDocument(); // push the result pointer lua_pushlightuserdata(L, (void *)returns); --- 4769,4773 ---- wxStyledTextCtrl * self = (wxStyledTextCtrl *)wxlState.GetUserDataType(1, s_wxluatag_wxStyledTextCtrl); // call CreateDocument ! returns = (void *)self->CreateDocument(); // push the result pointer lua_pushlightuserdata(L, (void *)returns); |