Update of /cvsroot/wxlua/wxLua/modules/wxlua/include
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv16448/wxLua/modules/wxlua/include
Modified Files:
wxlbind.h wxlcallb.h wxlstate.h
Log Message:
Update authors to include John Labenski and Ray Gilbert
Remove code attribution to LuaPlus since we don't use anything from it
Code cleanup
Index: wxlcallb.h
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxlua/include/wxlcallb.h,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** wxlcallb.h 26 Jul 2007 02:51:37 -0000 1.17
--- wxlcallb.h 26 Jul 2007 18:56:38 -0000 1.18
***************
*** 2,6 ****
// Name: wxlcallb.h
// Purpose: wxLuaCallback and wxLuaWinDestroyCallback
! // Author: Francis Irving
// Created: 21/01/2002
// Copyright: (c) 2002 Creature Labs. All rights reserved.
--- 2,6 ----
// Name: wxlcallb.h
// Purpose: wxLuaCallback and wxLuaWinDestroyCallback
! // Author: Francis Irving, John Labenski
// Created: 21/01/2002
// Copyright: (c) 2002 Creature Labs. All rights reserved.
Index: wxlbind.h
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxlua/include/wxlbind.h,v
retrieving revision 1.56
retrieving revision 1.57
diff -C2 -d -r1.56 -r1.57
*** wxlbind.h 26 Jul 2007 02:51:37 -0000 1.56
--- wxlbind.h 26 Jul 2007 18:56:38 -0000 1.57
***************
*** 393,402 ****
// Is this tag defined as something in this binding?
! bool IsTag(int tag) { return (tag >= m_startTag) && (tag <= m_lastTag); }
// Look for the base class of the input wxLuaBindClass in this binding using the
// baseclassName of the input and if found, set the wxLuaBindClass::baseclass
! // member of the input. This function is called by the wxLuaState during
! // creation and should not be called afterwards.
bool SetBaseClass(wxLuaBindClass *pClass);
--- 393,402 ----
// Is this tag defined as something in this binding?
! bool IsTag(int tag) { return (tag >= m_start_tag) && (tag <= m_last_tag); }
// Look for the base class of the input wxLuaBindClass in this binding using the
// baseclassName of the input and if found, set the wxLuaBindClass::baseclass
! // member of the input.
! // This is called by the wxLuaState during creation and should not be called afterwards.
bool SetBaseClass(wxLuaBindClass *pClass);
***************
*** 468,474 ****
wxString m_nameSpace; // lua table namespace e.g. "wx"
bool m_bindings_registered; // Is the binding registered
! int m_startTag; // The first wxLua allocated lua tag
! int m_lastTag; // The last wxLua lua tag of registered classes
! int m_wxLuaTable; // The lua tag for the wxLua private tables
static wxLuaBindingList sm_bindingList;
--- 468,474 ----
wxString m_nameSpace; // lua table namespace e.g. "wx"
bool m_bindings_registered; // Is the binding registered
! int m_start_tag; // The first wxLua allocated lua tag
! int m_last_tag; // The last wxLua lua tag of registered classes
! int m_luaTable_tag; // The lua tag for the wxLua private tables
static wxLuaBindingList sm_bindingList;
Index: wxlstate.h
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxlua/include/wxlstate.h,v
retrieving revision 1.87
retrieving revision 1.88
diff -C2 -d -r1.87 -r1.88
*** wxlstate.h 22 Jul 2007 04:38:29 -0000 1.87
--- wxlstate.h 26 Jul 2007 18:56:38 -0000 1.88
***************
*** 7,27 ****
/////////////////////////////////////////////////////////////////////////////
- /* ****************************************************************************
-
- Portions of code in this file have been taken from LuaPlus.
- LuaPlus was written and maintained by Joshua Jensen (jj...@wo...)
- and resides as http://wwhiz.com/LuaPlus/index.html . LuaPlus is distributed
- with the Lua Licence as described below.
-
- Lua License
- -----------
- Lua is licensed under the terms of the MIT license reproduced below.
- This mean that Lua is free software and can be used for both academic and
- commercial purposes at absolutely no cost.
-
- For details, see http://www.lua.org/license.html .
-
- **************************************************************************** */
-
#ifndef _WXLSTATE_H_
#define _WXLSTATE_H_
--- 7,10 ----
|