author | Francesco Abbate <francesco.bbt@gmail.com> | 2011年10月30日 23:25:47 +0100 |
---|---|---|
committer | Francesco Abbate <francesco.bbt@gmail.com> | 2011年10月30日 23:25:47 +0100 |
commit | 8982766de615fb745ee50934e69475ea153faa29 (patch) | |
tree | 473205c701231ac64d53678824acda87d079b622 | |
parent | 4051c4b56fc0ffb61ab38ef0debeacf3e33a9ce1 (diff) | |
download | gsl-shell-fox-window.tar.gz |
-rw-r--r-- | fox/lua_fox_window.cpp | 3 | ||||
-rw-r--r-- | gui.lua | 2 |
diff --git a/fox/lua_fox_window.cpp b/fox/lua_fox_window.cpp index dee94e12..f7174dc7 100644 --- a/fox/lua_fox_window.cpp +++ b/fox/lua_fox_window.cpp @@ -556,5 +556,6 @@ fox_window_register (lua_State *L) luaL_register (L, NULL, fox_window_methods); lua_pop (L, 1); - luaL_register (L, NULL, fox_window_functions); + luaL_register (L, "fox", fox_window_functions); + lua_pop(L, 1); } @@ -8,7 +8,7 @@ local SEL = require 'fox-selector' local OPTIONS = require 'fox-options' local OP = require 'fox-method' -local create = gsl.fox_window +local create = fox.fox_window local M = {} |