LuaManager::GetLuaInformation -> LuaHelpers::GetLuaInformation

This commit is contained in:
Glenn Maynard
2006-10-14 20:35:32 +00:00
parent 4276c87b67
commit 89b435ef51
3 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ void ExportStrings::Nsis()
void ExportStrings::LuaInformation()
{
XNode *pNode = LUA->GetLuaInformation();
XNode *pNode = LuaHelpers::GetLuaInformation();
pNode->AppendAttr( "xmlns", "http://www.stepmania.com" );
pNode->AppendAttr( "xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance" );
pNode->AppendAttr( "xsi:schemaLocation", "http://www.stepmania.com Lua.xsd" );
+1 -1
View File
@@ -233,7 +233,7 @@ namespace
};
}
XNode *LuaManager::GetLuaInformation() const
XNode *LuaHelpers::GetLuaInformation()
{
Lua *L = LUA->Get();
+2
View File
@@ -77,6 +77,8 @@ namespace LuaHelpers
void ParseCommandList( lua_State *L, const RString &sCommands, const RString &sName );
XNode *GetLuaInformation();
/* Pops the last iArgs arguments from the stack, and return a function that returns
* those values. */
void PushValueFunc( lua_State *L, int iArgs );