Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1709
Modified Files: Tag: devel_0_39 desire.c Log Message:
Index: desire.c =================================================================== RCS file: /cvsroot/pure-data/pd/src/Attic/desire.c,v retrieving revision 1.1.2.36 retrieving revision 1.1.2.37 diff -C2 -d -r1.1.2.36 -r1.1.2.37 *** desire.c 27 Oct 2005 00:18:22 -0000 1.1.2.36 --- desire.c 27 Oct 2005 14:07:54 -0000 1.1.2.37 *************** *** 60,64 ****
// if !k then suppose all of the object might have changed. ! void gobj_changed (t_gobj *self_, const char *k) { t_gobj *self = (t_gobj *)self_; int dirty = k ? (1<<class_getfieldindex(self->g_pd,k)) : -1; --- 60,64 ----
// if !k then suppose all of the object might have changed. ! void gobj_changed (void *, const char *k) { t_gobj *self = (t_gobj *)self_; int dirty = k ? (1<<class_getfieldindex(self->g_pd,k)) : -1; *************** *** 70,74 **** // if only a float is sent, it's a bitset of at most 25 elements // else it may mean whatever else... ! void gobj_changed2 (t_gobj *self_, int argc, t_atom *argv) { t_gobj *self = (t_gobj *)self_; t_appendix *d = self->g_adix; --- 70,74 ---- // if only a float is sent, it's a bitset of at most 25 elements // else it may mean whatever else... ! void gobj_changed2 (void *, int argc, t_atom *argv) { t_gobj *self = (t_gobj *)self_; t_appendix *d = self->g_adix;