summaryrefslogtreecommitdiff
path: root/iup/srclua5/cells.lua
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2010-06-15 00:59:57 -0700
committerPixel <pixel@nobis-crew.org>2010-06-15 00:59:57 -0700
commiteed0eb6a476d54ce19aeff137984aa981d9e3976 (patch)
tree807891636efd2f87dcbd261e971216269973ae07 /iup/srclua5/cells.lua
parentccc8261e4d48de89da4ddfe7b55e378ae0cd6f47 (diff)
Upgrading to iup 3.1
Diffstat (limited to 'iup/srclua5/cells.lua')
-rwxr-xr-xiup/srclua5/cells.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/iup/srclua5/cells.lua b/iup/srclua5/cells.lua
index 9c914f2..0355b17 100755
--- a/iup/srclua5/cells.lua
+++ b/iup/srclua5/cells.lua
@@ -3,7 +3,7 @@
------------------------------------------------------------------------------
local ctrl = {
nick = "cells",
- parent = WIDGET,
+ parent = iup.WIDGET,
creation = "",
callback = {
mouseclick_cb = "nnnnnns",
@@ -24,9 +24,9 @@ function ctrl.redraw(handle)
handle.repaint = "YES"
end
-function ctrl.createElement(class, arg)
- return Cells()
+function ctrl.createElement(class, param)
+ return iup.Cells()
end
-iupRegisterWidget(ctrl)
-iupSetClass(ctrl, "iup widget")
+iup.RegisterWidget(ctrl)
+iup.SetClass(ctrl, "iup widget")