Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19764
Modified Files: Tag: devel_0_39 m_imp.h m_class.c Log Message: no more c_wb
Index: m_class.c =================================================================== RCS file: /cvsroot/pure-data/pd/src/m_class.c,v retrieving revision 1.3.4.7.2.20 retrieving revision 1.3.4.7.2.21 diff -C2 -d -r1.3.4.7.2.20 -r1.3.4.7.2.21 *** m_class.c 2 Sep 2006 09:03:09 -0000 1.3.4.7.2.20 --- m_class.c 19 Sep 2006 05:59:25 -0000 1.3.4.7.2.21 *************** *** 237,243 **** c->c_listmethod = pd_defaultlist; c->c_anymethod = pd_defaultanything; ! #ifdef DESIRE ! c->c_wb = 0; ! #else c->c_wb = (typeflag == CLASS_PATCHABLE ? &text_widgetbehavior : 0); #endif --- 237,241 ---- c->c_listmethod = pd_defaultlist; c->c_anymethod = pd_defaultanything; ! #ifndef DESIRE c->c_wb = (typeflag == CLASS_PATCHABLE ? &text_widgetbehavior : 0); #endif
Index: m_imp.h =================================================================== RCS file: /cvsroot/pure-data/pd/src/m_imp.h,v retrieving revision 1.3.4.1.2.4 retrieving revision 1.3.4.1.2.5 diff -C2 -d -r1.3.4.1.2.4 -r1.3.4.1.2.5 *** m_imp.h 31 Aug 2006 19:36:06 -0000 1.3.4.1.2.4 --- m_imp.h 19 Sep 2006 05:59:25 -0000 1.3.4.1.2.5 *************** *** 44,48 **** --- 44,50 ---- t_listmethod c_listmethod; t_anymethod c_anymethod; + #ifndef DESIRE struct _widgetbehavior *c_wb; /* "gobjs" only */ + #endif struct _parentwidgetbehavior *c_pwb;/* widget behavior in parent */ t_savefn c_savefn; /* function to call when saving */