summaryrefslogtreecommitdiff
path: root/lib/LuaConfigFile.cc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/LuaConfigFile.cc')
-rw-r--r--lib/LuaConfigFile.cc12
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 }
};