From 4d4f8d07f3341e8309c1b066263a40227664bc3d Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Wed, 16 Mar 2005 04:56:38 +0000 Subject: static method map minor other things fixes for OSX fix for gcc svn path=/trunk/; revision=2629 --- externals/grill/flext/source/flmeth.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'externals/grill/flext/source/flmeth.cpp') diff --git a/externals/grill/flext/source/flmeth.cpp b/externals/grill/flext/source/flmeth.cpp index a9bf6749..e93db27a 100755 --- a/externals/grill/flext/source/flmeth.cpp +++ b/externals/grill/flext/source/flmeth.cpp @@ -17,9 +17,6 @@ WARRANTIES, see the file, "license.txt," in this distribution. #include #include "flinternal.h" -#include - - flext_base::MethItem::MethItem(AttrItem *conn): Item(conn),index(0), argc(0),args(NULL) @@ -41,7 +38,7 @@ void flext_base::MethItem::SetArgs(methfun _fun,int _argc,metharg *_args) void flext_base::AddMethodDef(int inlet,const t_symbol *tag) { - methhead->Add(new MethItem,tag,inlet); + methhead.Add(new MethItem,tag,inlet); } /*! \brief Add a method to the queue @@ -97,7 +94,7 @@ void flext_base::ListMethods(AtomList &la,int inlet) const int i; for(i = 0; i <= 1; ++i) { - ItemCont *a = i?methhead:clmethhead; + ItemCont *a = i?&methhead:clmethhead; if(a && a->Contained(inlet)) { ItemSet &ai = a->GetInlet(inlet); for(ItemSet::iterator as(ai); as; ++as) { -- cgit v1.2.1