Update of /cvsroot/wxlua/wxLua/modules/wxlua/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19877/wxLua/modules/wxlua/src
Modified Files:
internal.cpp
Log Message:
fix static wxClipboard::Get in clipdrag.i
cleanup in interal.cpp
add more pages to prefs dialog in wxluasudoku
Index: internal.cpp
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxlua/src/internal.cpp,v
retrieving revision 1.40
retrieving revision 1.41
diff -C2 -d -r1.40 -r1.41
*** internal.cpp 4 May 2006 02:47:34 -0000 1.40
--- internal.cpp 4 May 2006 05:07:04 -0000 1.41
***************
*** 416,420 ****
wxString buf = wxString::Format(_("Stack state in %s: in %u out %u\r\n"), message.c_str(), m_top, lua_gettop(m_luaState));
OutputDebugString(buf);
! #elif defined(__WXGTK__) || defined(__WXMAC__)
fprintf(stderr, "Stack state in %s: in %u out %u\r\n", (const char *)wx2lua(msg), m_top, lua_gettop(m_luaState));
#endif
--- 416,420 ----
wxString buf = wxString::Format(_("Stack state in %s: in %u out %u\r\n"), message.c_str(), m_top, lua_gettop(m_luaState));
OutputDebugString(buf);
! #else //if defined(__WXGTK__) || defined(__WXMAC__)
fprintf(stderr, "Stack state in %s: in %u out %u\r\n", (const char *)wx2lua(msg), m_top, lua_gettop(m_luaState));
#endif
|