aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/flext.cpp
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2002-12-20 04:31:40 +0000
committerThomas Grill <xovo@users.sourceforge.net>2002-12-20 04:31:40 +0000
commit927c48a90eb2a5ebf9e221041cd963c7377c8349 (patch)
tree848d76f4c0d5c1c7f6d6c4fe4b559debf03b8b04 /externals/grill/flext/source/flext.cpp
parente868b1bf7fea9309835e47238b36953b0eef797a (diff)
""
svn path=/trunk/; revision=305
Diffstat (limited to 'externals/grill/flext/source/flext.cpp')
-rw-r--r--externals/grill/flext/source/flext.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/externals/grill/flext/source/flext.cpp b/externals/grill/flext/source/flext.cpp
index 764bfa98..e052e56a 100644
--- a/externals/grill/flext/source/flext.cpp
+++ b/externals/grill/flext/source/flext.cpp
@@ -120,12 +120,13 @@ bool flext_base::compatibility = true;
flext_base::flext_base():
inlist(NULL),outlist(NULL),
+ curtag(NULL),
incnt(0),outcnt(0),
insigs(0),outsigs(0),
- curtag(NULL),
- outlets(NULL),inlets(NULL),outattr(NULL),
+ outlets(NULL),outattr(NULL),
+ distmsgs(false),
methhead(NULL),attrhead(NULL),attrcnt(0),
- distmsgs(false)
+ inlets(NULL)
{
LOG1("%s - flext logging is on",thisName());
@@ -661,9 +662,9 @@ bool flext_base::m_method_(int inlet,const t_symbol *s,int argc,const t_atom *ar
flext_base::methitem::methitem(int in,const t_symbol *t):
- inlet(in),tag(t),
- fun(NULL),
+ tag(t),inlet(in),
argc(0),args(NULL),
+ fun(NULL),
nxt(NULL)
{}