From 5e3101f8a1a5cf78f86635da6a78d8564aa85483 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Thu, 10 Mar 2005 04:56:41 +0000 Subject: new lock-free lifo and fifo fixed buggy unbinding of receive symbols no more static assignment of symbols (problems with Metrowerks) fixed bugs in SIMD code for non-power-of-2 lengths Max: use high-priority click instead of qelem for message-posting added method for clicks into object box svn path=/trunk/; revision=2614 --- externals/grill/flext/source/flmeth.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 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 4eceb612..5de2083a 100755 --- a/externals/grill/flext/source/flmeth.cpp +++ b/externals/grill/flext/source/flmeth.cpp @@ -122,11 +122,12 @@ void flext_base::ListMethods(AtomList &la,int inlet) const SetSymbol(la[ix++],it.data()); } -static const t_symbol *sym_methods = flext::MakeSymbol("methods"); - bool flext_base::cb_ListMethods(flext_base *c,int argc,const t_atom *argv) { if(c->procattr && (argc == 0 || (argc == 1 && CanbeInt(argv[0])))) { + // defined in flsupport.cpp + extern const t_symbol *sym_methods; + int inlet = argc?GetAInt(argv[0]):0; AtomList la; c->ListMethods(la,inlet); -- cgit v1.2.1