aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/tutorial/adv2/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'externals/grill/flext/tutorial/adv2/main.cpp')
-rw-r--r--externals/grill/flext/tutorial/adv2/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/externals/grill/flext/tutorial/adv2/main.cpp b/externals/grill/flext/tutorial/adv2/main.cpp
index 10322010..9174d3b1 100644
--- a/externals/grill/flext/tutorial/adv2/main.cpp
+++ b/externals/grill/flext/tutorial/adv2/main.cpp
@@ -44,7 +44,7 @@ protected:
private:
// define the _static_ class setup function
- static void setup(t_class *c);
+ static void setup(t_classid c);
FLEXT_CALLBACK(m_tag)
FLEXT_CALLBACK_I(m_tag_and_int)
@@ -61,7 +61,7 @@ adv2::adv2()
AddInAnything(); // add inlet of type anything (index 0)
}
-void adv2::setup(t_class *c)
+void adv2::setup(t_classid c)
{
// register methods:
// notice the naming FLEXT_CADD_METHOD* instead of FLEXT_ADD_METHOD*