mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-05 14:59:01 +00:00
Fixed: #900 ELuaExecuteError: No matching overload found, setContextHelpText
This commit is contained in:
parent
d75e16d60a
commit
f31ed6c750
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)
|
||||
{
|
||||
//H_AUTO(Lua_CLuaIHM_push)
|
||||
luabind::object obj(ls.getStatePointer(), value);
|
||||
#if LUABIND_VERSION == 600
|
||||
luabind::object obj(ls.getStatePointer(), value);
|
||||
obj.pushvalue();
|
||||
#else
|
||||
luabind::detail::push(ls.getStatePointer(), value);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue