blob: 1841d6af97bf7663bd51085b876535d44a33232c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
------------------------------------------------------------------------------
-- Separator class
------------------------------------------------------------------------------
local ctrl = {
nick = "separator",
parent = WIDGET,
creation = "",
callback = {}
}
function ctrl.createElement(class, arg)
return Separator()
end
iupRegisterWidget(ctrl)
iupSetClass(ctrl, "iup widget")
|