diff options
author | pixel <pixel> | 2007-07-27 10:05:52 +0000 |
---|---|---|
committer | pixel <pixel> | 2007-07-27 10:05:52 +0000 |
commit | 6c1ab7da376ae7f78a075dda5c5be0dabce20931 (patch) | |
tree | bc44e447c450c96140cf6b63c39a37afa8ba61fb /lib/LuaConfigFile.cc | |
parent | a68385b1043a2041390f65ce5cf9ed434af5e95d (diff) |
Upgrading to Lua-5.1.2
Diffstat (limited to 'lib/LuaConfigFile.cc')
-rw-r--r-- | lib/LuaConfigFile.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/LuaConfigFile.cc b/lib/LuaConfigFile.cc index f08ed8b..727e24d 100644 --- a/lib/LuaConfigFile.cc +++ b/lib/LuaConfigFile.cc @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: LuaConfigFile.cc,v 1.7 2007-05-30 11:57:10 pixel Exp $ */ +/* $Id: LuaConfigFile.cc,v 1.8 2007-07-27 10:05:52 pixel Exp $ */ #include "LuaConfigFile.h" @@ -42,13 +42,13 @@ enum ConfigFile_functions_t { }; struct lua_functypes_t ConfigFile_methods[] = { - { CONFIGFILE_INDEX, "index", 1, 1, {LUA_STRING} }, - { CONFIGFILE_NEWINDEX, "newindex", 1, 1, {LUA_ANY} }, + { CONFIGFILE_INDEX, "index", 1, 1, { BLUA_STRING } }, + { CONFIGFILE_NEWINDEX, "newindex", 1, 1, { BLUA_ANY } }, { -1, 0, 0, 0, 0 } }; struct lua_functypes_t ConfigFile_functions[] = { - { CONFIGFILE_NEWCONFIGFILE, "ConfigFile" , 1, 1, {LUA_OBJECT } }, + { CONFIGFILE_NEWCONFIGFILE, "ConfigFile" , 1, 1, { BLUA_OBJECT } }, { -1, 0, 0, 0, 0 } }; @@ -122,8 +122,8 @@ enum ConfigSectionContents_methods_t { }; struct lua_functypes_t ConfigSectionContents_methods[] = { - { CONFIGSECTIONCONTENTS_INDEX, "index", 1, 1, {LUA_STRING} }, - { CONFIGSECTIONCONTENTS_NEWINDEX, "newindex", 1, 1, {LUA_ANY} }, + { CONFIGSECTIONCONTENTS_INDEX, "index", 1, 1, { BLUA_STRING } }, + { CONFIGSECTIONCONTENTS_NEWINDEX, "newindex", 1, 1, { BLUA_ANY } }, { -1, 0, 0, 0, 0 } }; |