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/srclua3/split.lua | |
| parent | ccc8261e4d48de89da4ddfe7b55e378ae0cd6f47 (diff) | |
Upgrading to iup 3.1
Diffstat (limited to 'iup/srclua3/split.lua')
| -rw-r--r-- | iup/srclua3/split.lua | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/iup/srclua3/split.lua b/iup/srclua3/split.lua new file mode 100644 index 0000000..6deaae3 --- /dev/null +++ b/iup/srclua3/split.lua @@ -0,0 +1,10 @@ +IUPSPLIT = {parent = WIDGET} + +function IUPSPLIT:CreateIUPelement (obj) +  return iupCreateSplit(obj[1], obj[2]) +end + +function iupsplit (o) +  return IUPSPLIT:Constructor (o) +end +iup.split = iupplit | 
