summaryrefslogtreecommitdiff
path: root/iup/srclua5/dial.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/dial.lua
parentccc8261e4d48de89da4ddfe7b55e378ae0cd6f47 (diff)
Upgrading to iup 3.1
Diffstat (limited to 'iup/srclua5/dial.lua')
-rwxr-xr-xiup/srclua5/dial.lua12
1 files changed, 6 insertions, 6 deletions
diff --git a/iup/srclua5/dial.lua b/iup/srclua5/dial.lua
index 0384b43..29f3fa1 100755
--- a/iup/srclua5/dial.lua
+++ b/iup/srclua5/dial.lua
@@ -3,8 +3,8 @@
------------------------------------------------------------------------------
local ctrl = {
nick = "dial",
- parent = WIDGET,
- creation = "s",
+ parent = iup.WIDGET,
+ creation = "S",
callback = {
mousemove_cb = "d", -- already registered by the val, but has a name conflict
-- button_press_cb = "d", -- already registered by the val
@@ -13,9 +13,9 @@ local ctrl = {
include = "iupcontrols.h",
}
-function ctrl.createElement(class, arg)
- return Dial(arg[1])
+function ctrl.createElement(class, param)
+ return iup.Dial(param[1])
end
-iupRegisterWidget(ctrl)
-iupSetClass(ctrl, "iup widget")
+iup.RegisterWidget(ctrl)
+iup.SetClass(ctrl, "iup widget")