aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ClientHamr
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-04-17 15:16:01 +1000
committerDavid Walter Seikel2014-04-17 15:16:01 +1000
commit01d27a5bd565d9a4b6fe1f04fdc77ddf95415ef2 (patch)
tree9d688f3b382fe9b25704b282d56c46c4fbc48bc2 /ClientHamr
parentGuiLuaDo() now passes args to Lua in arg, then lets skang do most of the work... (diff)
downloadSledjHamr-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.lua6
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.
989clear = function () 989clear = function ()
990end 990end
991--window = function (width, height, title)
992--end
993 991
994skang = function (name) 992skang = function (name)
995end 993end
@@ -997,10 +995,12 @@ quit = function ()
997end 995end
998 996
999thingasm('clear', 'The current skin is cleared of all widgets.', clear) 997thingasm('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'}
1001thingasm('skang', 'Parse the contents of a skang file or URL.', skang, 'URL') 998thingasm('skang', 'Parse the contents of a skang file or URL.', skang, 'URL')
1002thingasm('quit', 'Quit, exit, remove thyself.', quit) 999thingasm('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
1005moduleEnd(_M) 1005moduleEnd(_M)
1006 1006