aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/flsupport.h
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2003-03-07 04:40:37 +0000
committerThomas Grill <xovo@users.sourceforge.net>2003-03-07 04:40:37 +0000
commitf237ae21678a18c8862d4e8c1f180f1d56097b17 (patch)
treecd552b2a1dca61c60f8f66f871dbc94670f738d3 /externals/grill/flext/source/flsupport.h
parent4215d864c0baf21a4f67ed3fe44e642b84708197 (diff)
""
svn path=/trunk/; revision=455
Diffstat (limited to 'externals/grill/flext/source/flsupport.h')
-rw-r--r--externals/grill/flext/source/flsupport.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/externals/grill/flext/source/flsupport.h b/externals/grill/flext/source/flsupport.h
index 760083a8..f7e65899 100644
--- a/externals/grill/flext/source/flsupport.h
+++ b/externals/grill/flext/source/flsupport.h
@@ -516,10 +516,10 @@ public:
*/
//! Send a message to a symbol (bound to an object)
- static bool Forward(const t_symbol *s,int argc,const t_atom *argv);
+ static bool Forward(const t_symbol *sym,const t_symbol *s,int argc,const t_atom *argv);
- static bool Forward(const t_symbol *s,AtomList &args) { return Forward(s,args.Count(),args.Atoms()); }
- static bool Forward(const char *s,AtomList &args) { return Forward(MakeSymbol(s),args.Count(),args.Atoms()); }
+ static bool Forward(const t_symbol *sym,AtomAnything &args) { return Forward(sym,args.Header(),args.Count(),args.Atoms()); }
+ static bool Forward(const char *sym,AtomAnything &args) { return Forward(MakeSymbol(sym),args.Header(),args.Count(),args.Atoms()); }
//! @} FLEXT_S_MSG