aboutsummaryrefslogtreecommitdiff
path: root/toxy/widget.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-08-01 17:35:10 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-08-01 17:35:10 +0000
commit095e10a6a17420dd31d1f5f592b639f100275057 (patch)
tree7b1c278604a4a5feeb896f9fe2ab4ab2d23393d5 /toxy/widget.c
parent47c48c71f7b95aee1347fa4e02c0de09eef1234d (diff)
replace .x%x 32-bit only canvas id with .x%lx canvas id which supports 32-bit and 64-bit
svn path=/trunk/externals/miXed/; revision=15186
Diffstat (limited to 'toxy/widget.c')
-rw-r--r--toxy/widget.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/toxy/widget.c b/toxy/widget.c
index 71c24a8..c2306f9 100644
--- a/toxy/widget.c
+++ b/toxy/widget.c
@@ -204,7 +204,7 @@ static t_symbol *widget_getcvpathname(t_widget *x, t_glist *glist)
else
{
char buf[32];
- sprintf(buf, ".x%x.c", (int)cv);
+ sprintf(buf, ".x%lx.c", (int)cv);
return (gensym(buf));
}
}
@@ -1145,9 +1145,9 @@ static void *widget_new(t_symbol *s, int ac, t_atom *av)
if (!(x->x_tkclass = widgettype_tkclass(x->x_typedef)))
x->x_tkclass = x->x_type;
- sprintf(buf, ".x%x.c", (int)x->x_glist);
+ sprintf(buf, ".x%lx.c", (int)x->x_glist);
x->x_cvpathname = gensym(buf);
- sprintf(buf, ".x%x", (int)x->x_glist);
+ sprintf(buf, ".x%lx", (int)x->x_glist);
x->x_cvtarget = gensym(buf);
sprintf(buf, "::toxy::v%x", (int)x);
x->x_varname = gensym(buf);