aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--externals/grill/flext/source/flattr_ed.cpp2
-rw-r--r--externals/grill/flext/source/flsupport.h7
2 files changed, 6 insertions, 3 deletions
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<char *>(list?"%s {\n":"%s\n",GetString(sym)));
+ sys_vgui(const_cast<char *>(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);