From cae5b31ed948dd14e7d0dcb9e95642596ba50a24 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Sun, 28 Nov 2004 05:01:00 +0000 Subject: typo fixed in attribute editor fixed const error svn path=/trunk/; revision=2336 --- externals/grill/flext/source/flsupport.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'externals/grill/flext/source/flsupport.h') diff --git a/externals/grill/flext/source/flsupport.h b/externals/grill/flext/source/flsupport.h index 69848762..be64b1e2 100644 --- a/externals/grill/flext/source/flsupport.h +++ b/externals/grill/flext/source/flsupport.h @@ -510,7 +510,9 @@ public: { public: //! Construct list - AtomList(int argc = 0,const t_atom *argv = NULL); + AtomList(): cnt(0),lst(NULL) {} + //! Construct list + AtomList(int argc,const t_atom *argv = NULL); //! Construct list AtomList(const AtomList &a); //! Destroy list @@ -583,9 +585,10 @@ public: public AtomList { public: + AtomAnything(): hdr(NULL) {} #if FLEXT_SYS != FLEXT_SYS_JMAX //! Construct anything - AtomAnything(const t_symbol *h = NULL,int argc = 0,const t_atom *argv = NULL); + AtomAnything(const t_symbol *h,int argc = 0,const t_atom *argv = NULL); #endif //! Construct anything AtomAnything(const char *h,int argc = 0,const t_atom *argv = NULL); -- cgit v1.2.1