diff options
author | David Walter Seikel | 2014-04-17 15:16:01 +1000 |
---|---|---|
committer | David Walter Seikel | 2014-04-17 15:16:01 +1000 |
commit | 01d27a5bd565d9a4b6fe1f04fdc77ddf95415ef2 (patch) | |
tree | 9d688f3b382fe9b25704b282d56c46c4fbc48bc2 /ClientHamr | |
parent | GuiLuaDo() now passes args to Lua in arg, then lets skang do most of the work... (diff) | |
download | SledjHamr-01d27a5bd565d9a4b6fe1f04fdc77ddf95415ef2.zip SledjHamr-01d27a5bd565d9a4b6fe1f04fdc77ddf95415ef2.tar.gz SledjHamr-01d27a5bd565d9a4b6fe1f04fdc77ddf95415ef2.tar.bz2 SledjHamr-01d27a5bd565d9a4b6fe1f04fdc77ddf95415ef2.tar.xz |
Clean up from the skang.window() -> widget.window() move.
Diffstat (limited to 'ClientHamr')
-rw-r--r-- | ClientHamr/GuiLua/skang.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ClientHamr/GuiLua/skang.lua b/ClientHamr/GuiLua/skang.lua index 70d7778..1357b69 100644 --- a/ClientHamr/GuiLua/skang.lua +++ b/ClientHamr/GuiLua/skang.lua | |||
@@ -988,8 +988,6 @@ thingasm('nada', 'Do nothing.', function () --[[ This function intentionally lef | |||
988 | -- TODO - Some function stubs, for now. Fill them up later. | 988 | -- TODO - Some function stubs, for now. Fill them up later. |
989 | clear = function () | 989 | clear = function () |
990 | end | 990 | end |
991 | --window = function (width, height, title) | ||
992 | --end | ||
993 | 991 | ||
994 | skang = function (name) | 992 | skang = function (name) |
995 | end | 993 | end |
@@ -997,10 +995,12 @@ quit = function () | |||
997 | end | 995 | end |
998 | 996 | ||
999 | thingasm('clear', 'The current skin is cleared of all widgets.', clear) | 997 | thingasm('clear', 'The current skin is cleared of all widgets.', clear) |
1000 | --thingasm{'window', 'The size and title of the application Frame.', window, 'x,y,name', acl='GGG'} | ||
1001 | thingasm('skang', 'Parse the contents of a skang file or URL.', skang, 'URL') | 998 | thingasm('skang', 'Parse the contents of a skang file or URL.', skang, 'URL') |
1002 | thingasm('quit', 'Quit, exit, remove thyself.', quit) | 999 | thingasm('quit', 'Quit, exit, remove thyself.', quit) |
1003 | 1000 | ||
1001 | -- This moved to the widget module, but it's not all there yet. | ||
1002 | --thingasm{'window', 'The size and title of the application Frame.', window, 'x,y,name', acl='GGG'} | ||
1003 | |||
1004 | 1004 | ||
1005 | moduleEnd(_M) | 1005 | moduleEnd(_M) |
1006 | 1006 | ||