mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 23:09:04 +00:00
Fixed: #900 ELuaExecuteError: No matching overload found, setContextHelpText
This commit is contained in:
parent
c39046773d
commit
488d2d42a7
1 changed files with 3 additions and 1 deletions
|
@ -289,9 +289,11 @@ bool CLuaIHM::getUCStringOnStack(CLuaState &ls, sint index, ucstring &dest)
|
||||||
void CLuaIHM::push(CLuaState &ls, const ucstring &value)
|
void CLuaIHM::push(CLuaState &ls, const ucstring &value)
|
||||||
{
|
{
|
||||||
//H_AUTO(Lua_CLuaIHM_push)
|
//H_AUTO(Lua_CLuaIHM_push)
|
||||||
luabind::object obj(ls.getStatePointer(), value);
|
|
||||||
#if LUABIND_VERSION == 600
|
#if LUABIND_VERSION == 600
|
||||||
|
luabind::object obj(ls.getStatePointer(), value);
|
||||||
obj.pushvalue();
|
obj.pushvalue();
|
||||||
|
#else
|
||||||
|
luabind::detail::push(ls.getStatePointer(), value);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue