aboutsummaryrefslogtreecommitdiff
path: root/checkbutton.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2007-11-23 23:47:00 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2007-11-23 23:47:00 +0000
commit91e2f3ffda622e180b88bb8ae0fa6ebbb42c8888 (patch)
treeb90295c2e4e3ab9334edc6bc13a6b1ab2ca34934 /checkbutton.c
parent7afcd906f1e9e9e26609d168d1820b39b349c5a9 (diff)
Fixed these:
/* TODO: add size to query and save */ /* TODO: add scrollbars to query and save */ /* TODO: remove glist from _erase() args */ svn path=/trunk/externals/tkwidgets/; revision=9027
Diffstat (limited to 'checkbutton.c')
-rw-r--r--checkbutton.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/checkbutton.c b/checkbutton.c
index e4866d6..75ec581 100644
--- a/checkbutton.c
+++ b/checkbutton.c
@@ -120,7 +120,7 @@ static void checkbutton_drawme(t_checkbutton *x, t_glist *glist)
sys_vgui("destroy %s\n", x->widget_id->s_name); /* just in case it exists */
sys_vgui("checkbutton %s\n",
x->widget_id->s_name);
- tkwidgets_draw_inlets((t_object*)x, glist,
+ tkwidgets_draw_iolets((t_object*)x, glist,
x->canvas_id, x->iolets_tag, x->all_tag,
x->width, x->height, TOTAL_INLETS, TOTAL_OUTLETS);
sys_vgui("%s create window %d %d -anchor nw -window %s -tags {%s %s}\n",
@@ -219,7 +219,7 @@ static void checkbutton_size(t_checkbutton *x, t_float width, t_float height)
sys_vgui("%s itemconfigure %s -width %d -height %d\n",
x->canvas_id->s_name, x->window_tag->s_name, x->width, x->height);
// erase_inlets(x);
-// tkwidgets_draw_inlets(x, x->x_glist, TOTAL_INLETS, TOTAL_OUTLETS);
+// tkwidgets_draw_iolets(x, x->x_glist, TOTAL_INLETS, TOTAL_OUTLETS);
canvas_fixlinesfor(x->x_glist, (t_text *)x); // 2nd inlet
}
}