aboutsummaryrefslogtreecommitdiff
path: root/src/paramCustom.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/paramCustom.h')
-rw-r--r--src/paramCustom.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/paramCustom.h b/src/paramCustom.h
index 9d34f83..b8c8ee7 100644
--- a/src/paramCustom.h
+++ b/src/paramCustom.h
@@ -182,7 +182,7 @@ static void* paramCustom_new(t_symbol *s, int ac, t_atom *av)
void paramCustom_setup(void)
{
- paramCustom_class = class_new(gensym("paramCustom"),
+ paramCustom_class = class_new(gensym("param custom"),
(t_newmethod)paramCustom_new, (t_method)paramCustom_free,
sizeof(t_paramCustom), 0, A_GIMME, 0);
@@ -197,4 +197,6 @@ void paramCustom_setup(void)
class_addanything(paramCustom_receive_class, paramCustom_receive_anything);
+ class_sethelpsymbol(paramCustom_class,gensym("param"));
+
}