Update of /cvsroot/wxlua/wxLua/modules/wxluadebug/include
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv32141/wxLua/modules/wxluadebug/include
Modified Files:
wxldebug.h
Log Message:
Use GetCount not Count for wxArrays
have wxLuaDebugData return the array as a pointer since it may not exist and add checks for it
Rename wxLua socket enums so they start with wxLUASOCKET_XXX
Removed wxLuaBuffer and just use wxArrayString instead
Use wxInt32 wxUint32 for wxLuaSocket code not int, short, etc for 64 bit processors
rework all wxLuaSocketBase::Read/Write code
Index: wxldebug.h
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxluadebug/include/wxldebug.h,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** wxldebug.h 8 Sep 2006 22:43:46 -0000 1.22
--- wxldebug.h 13 Sep 2006 04:13:47 -0000 1.23
***************
*** 84,90 ****
wxLuaDebugData(const wxLuaDebugData &debugData) { Ref(debugData); }
// Get the data array
! wxLuaDebugDataItemArray& GetArray();
! const wxLuaDebugDataItemArray& GetArray() const;
// wxArray functions mapped to the internal array w/ error checking
--- 84,92 ----
wxLuaDebugData(const wxLuaDebugData &debugData) { Ref(debugData); }
+ virtual ~wxLuaDebugData() {}
+
// Get the data array
! wxLuaDebugDataItemArray* GetArray();
! const wxLuaDebugDataItemArray* GetArray() const;
// wxArray functions mapped to the internal array w/ error checking
|