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/flattr_ed.cpp | 2 +- externals/grill/flext/source/flsupport.h | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) (limited to 'externals') diff --git a/externals/grill/flext/source/flattr_ed.cpp b/externals/grill/flext/source/flattr_ed.cpp index 2b8bcbed..f4e26d52 100644 --- a/externals/grill/flext/source/flattr_ed.cpp +++ b/externals/grill/flext/source/flattr_ed.cpp @@ -523,7 +523,7 @@ void flext_base::cb_GfxProperties(t_gobj *c, t_glist *) FLEXT_ASSERT(false); } - sys_vgui(const_cast(list?"%s {\n":"%s\n",GetString(sym))); + sys_vgui(const_cast(list?"%s {\n":"%s\n"),GetString(sym)); AtomList lv; if(gattr) { // gettable attribute is present 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