summaryrefslogtreecommitdiff
path: root/iup/srclua5/il_pplot.c
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2010-09-09 02:26:30 +0200
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2010-09-09 02:32:26 +0200
commit7505e88db66798b2b8fcdff2d92a7136cd826b5b (patch)
treeb6ced565318f8e8112e35cb0ad53abe4212ef8de /iup/srclua5/il_pplot.c
parente9a184546b18cf3b796bd560561f312934004c54 (diff)
Upgrading to IUP 3.2 - and cleaning up.
Diffstat (limited to 'iup/srclua5/il_pplot.c')
-rwxr-xr-xiup/srclua5/il_pplot.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/iup/srclua5/il_pplot.c b/iup/srclua5/il_pplot.c
index 67e4b07..6fee50f 100755
--- a/iup/srclua5/il_pplot.c
+++ b/iup/srclua5/il_pplot.c
@@ -16,8 +16,8 @@
static int pplot_edit_cb(Ihandle *self, int p0, int p1, float p2, float p3, float p4, float p5)
{
lua_State *L = iuplua_call_start(self, "edit_cb");
- lua_pushnumber(L, p0);
- lua_pushnumber(L, p1);
+ lua_pushinteger(L, p0);
+ lua_pushinteger(L, p1);
lua_pushnumber(L, p2);
lua_pushnumber(L, p3);
lua_pushnumber(L, p4);
@@ -40,15 +40,15 @@ static int pplot_selectbegin_cb(Ihandle *self)
static int pplot_postdraw_cb(Ihandle *self, int p0)
{
lua_State *L = iuplua_call_start(self, "postdraw_cb");
- lua_pushnumber(L, p0);
+ lua_pushinteger(L, p0);
return iuplua_call(L, 1);
}
static int pplot_delete_cb(Ihandle *self, int p0, int p1, float p2, float p3)
{
lua_State *L = iuplua_call_start(self, "delete_cb");
- lua_pushnumber(L, p0);
- lua_pushnumber(L, p1);
+ lua_pushinteger(L, p0);
+ lua_pushinteger(L, p1);
lua_pushnumber(L, p2);
lua_pushnumber(L, p3);
return iuplua_call(L, 4);
@@ -57,7 +57,7 @@ static int pplot_delete_cb(Ihandle *self, int p0, int p1, float p2, float p3)
static int pplot_predraw_cb(Ihandle *self, int p0)
{
lua_State *L = iuplua_call_start(self, "predraw_cb");
- lua_pushnumber(L, p0);
+ lua_pushinteger(L, p0);
return iuplua_call(L, 1);
}
@@ -70,11 +70,11 @@ static int pplot_selectend_cb(Ihandle *self)
static int pplot_select_cb(Ihandle *self, int p0, int p1, float p2, float p3, int p4)
{
lua_State *L = iuplua_call_start(self, "select_cb");
- lua_pushnumber(L, p0);
- lua_pushnumber(L, p1);
+ lua_pushinteger(L, p0);
+ lua_pushinteger(L, p1);
lua_pushnumber(L, p2);
lua_pushnumber(L, p3);
- lua_pushnumber(L, p4);
+ lua_pushinteger(L, p4);
return iuplua_call(L, 5);
}