diff options
-rw-r--r-- | lib/LuaConfigFile.cc | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/LuaConfigFile.cc b/lib/LuaConfigFile.cc index 3babda0..f6b9574 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.1 2005-03-30 10:32:25 pixel Exp $ */ +/* $Id: LuaConfigFile.cc,v 1.2 2007-05-25 07:29:01 pixel Exp $ */ #include "LuaConfigFile.h" @@ -75,6 +75,8 @@ void LuaConfigFile::pushstatics(Lua * L) throw (GeneralException) { CHECK_FUNCTIONS(ConfigFile); PUSH_FUNCTION(ConfigFile, CONFIGFILE_NEWCONFIGFILE); + + LuaConfigSectionContents::pushstatics(L); } int sLua_ConfigFile::ConfigFile_proceed(Lua * L, int n, ConfigFile * c, int caller) { @@ -141,6 +143,11 @@ void LuaConfigSectionContents::pushmembers(Lua * L) { PUSH_METAMETHOD(ConfigSectionContents, CONFIGSECTIONCONTENTS_NEWINDEX); } +void LuaConfigSectionContents::pushstatics(Lua * L) throw (GeneralException) { + CHECK_METHODS(ConfigSectionContents); + CHECK_FUNCTIONS(ConfigSectionContents); +} + int sLua_ConfigSectionContents::ConfigSectionContents_proceed(Lua * L, int n, ConfigSectionContents * c, int caller) { String i; |