diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-10-31 05:42:54 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-10-31 05:42:54 +0000 |
commit | 15c0288885b0c7d7a0cc89a2ef68916dac71e388 (patch) | |
tree | a984c71f7f76ff59b03a54775f206d29584956b0 /cyclone/hammer/funbuff.c | |
parent | e6812c77e47416a3152506865324deafcda64f3a (diff) |
fixed problems with the classname stuff I just added:
- some objects use "x_ob" instead of the standard "x_obj"
- Table puts the t_object in some other struct
- Scope~ hides the t_object under some layer that's beyond me
svn path=/trunk/externals/miXed/; revision=8911
Diffstat (limited to 'cyclone/hammer/funbuff.c')
-rw-r--r-- | cyclone/hammer/funbuff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cyclone/hammer/funbuff.c b/cyclone/hammer/funbuff.c index 2aeb082..8328ffd 100644 --- a/cyclone/hammer/funbuff.c +++ b/cyclone/hammer/funbuff.c @@ -227,7 +227,7 @@ static void funbuff_dowrite(t_funbuff *x, t_symbol *fn) t_binbuf *bb = binbuf_new(); char buf[MAXPDSTRING]; t_hammernode *np; - binbuf_addv(bb, "s", atom_getsymbol(binbuf_getvec(x->x_obj.te_binbuf))); + binbuf_addv(bb, "s", atom_getsymbol(binbuf_getvec(x->x_ob.te_binbuf))); for (np = x->x_tree.t_first; np; np = np->n_next) binbuf_addv(bb, "if", np->n_key, HAMMERNODE_GETFLOAT(np)); canvas_makefilename(x->x_canvas, fn->s_name, buf, MAXPDSTRING); |