summaryrefslogtreecommitdiff
path: root/iup/srclua5
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2010-09-09 22:30:21 +0200
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2010-09-09 23:00:56 +0200
commitf067ce79b19e7f23940510dfa88fb5fc9febc41d (patch)
tree8ea080376ce5689d8249abcb2edc18637beb9cc7 /iup/srclua5
parent118211dab6af167167ce643d40607e6753b0e000 (diff)
Removing SetRedraw, and trying a bulk method instead.
Diffstat (limited to 'iup/srclua5')
-rwxr-xr-xiup/srclua5/iuplua_api.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/iup/srclua5/iuplua_api.c b/iup/srclua5/iuplua_api.c
index 3fc73a1..27adffe 100755
--- a/iup/srclua5/iuplua_api.c
+++ b/iup/srclua5/iuplua_api.c
@@ -725,12 +725,6 @@ static int Redraw(lua_State *L)
return 0;
}
-static int SetRedraw(lua_State *L)
-{
- IupSetRedraw(iuplua_checkihandle(L,1), luaL_checkinteger(L, 2));
- return 0;
-}
-
static int ShowXY(lua_State *L)
{
Ihandle *ih = iuplua_checkihandle(L,1);
@@ -870,7 +864,6 @@ void iupluaapi_open(lua_State * L)
{"UpdateChildren", UpdateChildren},
{"SaveImageAsText", SaveImageAsText},
{"Redraw", Redraw},
- {"SetRedraw", SetRedraw},
{"ShowXY", ShowXY},
{"StoreAttribute", StoreAttribute},
{"StoreGlobal", StoreGlobal},