diff options
author | Pixel <pixel@nobis-crew.org> | 2010-06-15 00:59:57 -0700 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2010-06-15 00:59:57 -0700 |
commit | eed0eb6a476d54ce19aeff137984aa981d9e3976 (patch) | |
tree | 807891636efd2f87dcbd261e971216269973ae07 /iup/srclua5/generator.lua | |
parent | ccc8261e4d48de89da4ddfe7b55e378ae0cd6f47 (diff) |
Upgrading to iup 3.1
Diffstat (limited to 'iup/srclua5/generator.lua')
-rwxr-xr-x | iup/srclua5/generator.lua | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/iup/srclua5/generator.lua b/iup/srclua5/generator.lua index 3732364..efbab5a 100755 --- a/iup/srclua5/generator.lua +++ b/iup/srclua5/generator.lua @@ -1,17 +1,18 @@ function dofile(f) - pcall(loadfile(f)) + pcall(loadfile(f)) end -- compatibility functions (with iuplua.lua) -function iupSetClass(ctrl, name) +iup = {} +function iup.SetClass(ctrl, name) element = ctrl end -- dummy functions -iupluaNewClass = function() end -iupSetMethod = iupluaNewClass -iupRegisterWidget = iupluaNewClass +iupDoNothing = function() end +iupSetMethod = iupDoNothing +iup.RegisterWidget = iupDoNothing c_types = { n = "int", |