From a1c2bb17663ce4dea2f5e7e3c1e1bfae35541a2c Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Mon, 23 May 2005 16:52:46 +0000 Subject: oops, fix Max/MSP has its own check.... changed initialization functions accordingly better timers for Windows fixed timer bug changed template parameter of TableMap compiler flag for MinGW binary compatibility (thanks to GG) enable WIN2000/XP API features with definition in build system fix for symbol messages into non-left inlets restructured TableMap type (doesn't own pointers any more) no sanity check for iterator fixes for MSVC6 slimmed object data structures better c++ compliance fixed problems with symbol binding svn path=/trunk/; revision=3074 --- externals/grill/flext/source/fldsp.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'externals/grill/flext/source/fldsp.h') diff --git a/externals/grill/flext/source/fldsp.h b/externals/grill/flext/source/fldsp.h index 1ba21ef1..d9dbb1fe 100644 --- a/externals/grill/flext/source/fldsp.h +++ b/externals/grill/flext/source/fldsp.h @@ -115,22 +115,22 @@ public: /*! \brief Add signal inlet(s) \param m Number of inlets to add */ - void AddInSignal(int m = 1) { AddInlet(xlet::tp_sig,m); } + void AddInSignal(int m = 1) { AddInlet(xlet_sig,m); } /*! \brief Add signal inlet (with description) \param desc Description of inlet */ - void AddInSignal(const char *desc) { AddInlet(xlet::tp_sig,1,desc); } + void AddInSignal(const char *desc) { AddInlet(xlet_sig,1,desc); } /*! \brief Add signal outlet(s) \param m Number of inlets to add */ - void AddOutSignal(int m = 1) { AddOutlet(xlet::tp_sig,m); } + void AddOutSignal(int m = 1) { AddOutlet(xlet_sig,m); } /*! \brief Add signal outlet (with description) \param desc Description of outlet */ - void AddOutSignal(const char *desc) { AddOutlet(xlet::tp_sig,1,desc); } + void AddOutSignal(const char *desc) { AddOutlet(xlet_sig,1,desc); } //! @} -- cgit v1.2.1