From eed0eb6a476d54ce19aeff137984aa981d9e3976 Mon Sep 17 00:00:00 2001 From: Pixel Date: Tue, 15 Jun 2010 00:59:57 -0700 Subject: Upgrading to iup 3.1 --- iup/srclua5/olecontrol.lua | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'iup/srclua5/olecontrol.lua') diff --git a/iup/srclua5/olecontrol.lua b/iup/srclua5/olecontrol.lua index 902977b..ab7afd5 100755 --- a/iup/srclua5/olecontrol.lua +++ b/iup/srclua5/olecontrol.lua @@ -3,7 +3,7 @@ ------------------------------------------------------------------------------ local ctrl = { nick = "olecontrol", - parent = WIDGET, + parent = iup.WIDGET, creation = "s", funcname = "OleControl", callback = {}, @@ -14,9 +14,8 @@ int iupolelua_open(lua_State* L) if (iuplua_opencall_internal(L)) IupOleControlOpen(); - iuplua_changeEnv(L); + iuplua_get_env(L); iupolecontrollua_open(L); - iuplua_returnEnv(L); return 0; } @@ -35,8 +34,8 @@ int luaopen_iupluaole51(lua_State* L) ]] } -function ctrl.createElement(class, arg) - return OleControl(arg[1]) +function ctrl.createElement(class, param) + return iup.OleControl(param[1]) end function ctrl.CreateLuaCOM(handle) @@ -50,5 +49,5 @@ function ctrl.CreateLuaCOM(handle) end end -iupRegisterWidget(ctrl) -iupSetClass(ctrl, "iup widget") +iup.RegisterWidget(ctrl) +iup.SetClass(ctrl, "iup widget") -- cgit v1.2.3