aboutsummaryrefslogtreecommitdiff
path: root/src/paramCustom.h
diff options
context:
space:
mode:
authorThomas O Fredericks <mrtof@users.sourceforge.net>2009-10-23 13:46:24 +0000
committerThomas O Fredericks <mrtof@users.sourceforge.net>2009-10-23 13:46:24 +0000
commit761af5cdd6f924577f0fc6af351039d2c35dcb7b (patch)
treec880ce57c38cbe08bdc542c6565e0eecc352fd2a /src/paramCustom.h
parent6a5c6a517019456eb945c64a340c4c4509570dd1 (diff)
Modified paramRoutes behavior with a bad message
svn path=/trunk/externals/tof/; revision=12651
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"));
+
}