Update of /cvsroot/pure-data/externals/grill/flext/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28482/source
Modified Files: flattr_ed.cpp flsupport.h Log Message: typo fixed in attribute editor fixed const error
Index: flattr_ed.cpp =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/source/flattr_ed.cpp,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** flattr_ed.cpp 27 Nov 2004 05:01:07 -0000 1.29 --- flattr_ed.cpp 28 Nov 2004 05:00:59 -0000 1.30 *************** *** 524,528 **** }
! sys_vgui(const_cast<char *>(list?"%s {\n":"%s\n",GetString(sym)));
AtomList lv; --- 524,528 ---- }
! sys_vgui(const_cast<char *>(list?"%s {\n":"%s\n"),GetString(sym));
AtomList lv;
Index: flsupport.h =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/source/flsupport.h,v retrieving revision 1.71 retrieving revision 1.72 diff -C2 -d -r1.71 -r1.72 *** flsupport.h 26 Oct 2004 20:03:38 -0000 1.71 --- flsupport.h 28 Nov 2004 05:01:00 -0000 1.72 *************** *** 511,515 **** public: //! Construct list ! AtomList(int argc = 0,const t_atom *argv = NULL); //! Construct list AtomList(const AtomList &a); --- 511,517 ---- public: //! Construct list ! AtomList(): cnt(0),lst(NULL) {} ! //! Construct list ! AtomList(int argc,const t_atom *argv = NULL); //! Construct list AtomList(const AtomList &a); *************** *** 584,590 **** { public: #if FLEXT_SYS != FLEXT_SYS_JMAX //! Construct anything ! AtomAnything(const t_symbol *h = NULL,int argc = 0,const t_atom *argv = NULL); #endif //! Construct anything --- 586,593 ---- { public: + AtomAnything(): hdr(NULL) {} #if FLEXT_SYS != FLEXT_SYS_JMAX //! Construct anything ! AtomAnything(const t_symbol *h,int argc = 0,const t_atom *argv = NULL); #endif //! Construct anything