diff options
author | pixel <pixel> | 2007-05-25 07:29:01 +0000 |
---|---|---|
committer | pixel <pixel> | 2007-05-25 07:29:01 +0000 |
commit | b769eedd469c2fd3df097ff47bf183945b69e962 (patch) | |
tree | 280dff554bda505915779b43eb6bc58e3468abf2 /lib/LuaConfigFile.cc | |
parent | b7b03ebbf2214ae434433494968ae05866eee52b (diff) |
Chaining the pushstatics.
Diffstat (limited to 'lib/LuaConfigFile.cc')
-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; |