From ff6b00b82c7f3f1a1efae7ba00894604aa70a60d Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Thu, 10 Nov 2005 22:15:07 +0000 Subject: switched over the help files to the Pd standard name; removed the explicit helpfile declaration since its not needed and causes problems svn path=/trunk/externals/maxlib/; revision=3878 --- src/poisson.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/poisson.c') diff --git a/src/poisson.c b/src/poisson.c index 92469ad..ce2e33b 100644 --- a/src/poisson.c +++ b/src/poisson.c @@ -76,7 +76,7 @@ void poisson_setup(void) rand_poisson_class = class_new(gensym("poisson"), (t_newmethod)rand_poisson_new, 0, sizeof(t_rand_poisson), 0, A_DEFFLOAT, 0); class_addbang(rand_poisson_class, rand_poisson_bang); - class_sethelpsymbol(rand_poisson_class, gensym("help-poisson.pd")); + class_sethelpsymbol(rand_poisson_class, gensym("poisson-help.pd")); post(version); } #else @@ -86,6 +86,6 @@ void maxlib_poisson_setup(void) sizeof(t_rand_poisson), 0, A_DEFFLOAT, 0); class_addcreator((t_newmethod)rand_poisson_new, gensym("poisson"), A_DEFFLOAT, 0); class_addbang(rand_poisson_class, rand_poisson_bang); - class_sethelpsymbol(rand_poisson_class, gensym("maxlib/help-poisson.pd")); + class_sethelpsymbol(rand_poisson_class, gensym("maxlib/poisson-help.pd")); } #endif -- cgit v1.2.1