LuaManager::GetLuaInformation -> LuaHelpers::GetLuaInformation
This commit is contained in:
@@ -47,7 +47,7 @@ void ExportStrings::Nsis()
|
|||||||
|
|
||||||
void ExportStrings::LuaInformation()
|
void ExportStrings::LuaInformation()
|
||||||
{
|
{
|
||||||
XNode *pNode = LUA->GetLuaInformation();
|
XNode *pNode = LuaHelpers::GetLuaInformation();
|
||||||
pNode->AppendAttr( "xmlns", "http://www.stepmania.com" );
|
pNode->AppendAttr( "xmlns", "http://www.stepmania.com" );
|
||||||
pNode->AppendAttr( "xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance" );
|
pNode->AppendAttr( "xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance" );
|
||||||
pNode->AppendAttr( "xsi:schemaLocation", "http://www.stepmania.com Lua.xsd" );
|
pNode->AppendAttr( "xsi:schemaLocation", "http://www.stepmania.com Lua.xsd" );
|
||||||
|
|||||||
@@ -233,7 +233,7 @@ namespace
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
XNode *LuaManager::GetLuaInformation() const
|
XNode *LuaHelpers::GetLuaInformation()
|
||||||
{
|
{
|
||||||
Lua *L = LUA->Get();
|
Lua *L = LUA->Get();
|
||||||
|
|
||||||
|
|||||||
@@ -77,6 +77,8 @@ namespace LuaHelpers
|
|||||||
|
|
||||||
void ParseCommandList( lua_State *L, const RString &sCommands, const RString &sName );
|
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
|
/* Pops the last iArgs arguments from the stack, and return a function that returns
|
||||||
* those values. */
|
* those values. */
|
||||||
void PushValueFunc( lua_State *L, int iArgs );
|
void PushValueFunc( lua_State *L, int iArgs );
|
||||||
|
|||||||
Reference in New Issue
Block a user