diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-09-29 21:36:48 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-09-29 21:36:48 +0000 |
commit | 5879bc9332a97d74274f79a1b9207928b3f2c11b (patch) | |
tree | 6a6df9c3ff563becc02d53e4c8e31d6fce7b91f4 /lpc~ | |
parent | ad2fa00781022a50a7e3ceab91b7e641dc12a165 (diff) |
renamed help files to standard name and removed class_sethelpsymbol since it is unnecessary and gets in the way
svn path=/trunk/externals/ekext/; revision=8774
Diffstat (limited to 'lpc~')
-rw-r--r-- | lpc~/lpc_anal/lpc~.c | 4 | ||||
-rw-r--r-- | lpc~/lpc_filter/lpreson~.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lpc~/lpc_anal/lpc~.c b/lpc~/lpc_anal/lpc~.c index c9ad667..ce6bdbb 100644 --- a/lpc~/lpc_anal/lpc~.c +++ b/lpc~/lpc_anal/lpc~.c @@ -197,7 +197,7 @@ void lpc_tilde_setup(void) post(". & Edward Kelly <morph_2016@yahoo.co.uk> ."); class_addmethod(lpc_tilde_class, (t_method)lpc_tilde_dsp, gensym("dsp"), 0); -// class_sethelpsymbol(lpc_tilde_class, gensym("help-lpc~")); - class_sethelpsymbol(lpc_tilde_class, gensym("lpc_test")); + + CLASS_MAINSIGNALIN(lpc_tilde_class, t_lpc_tilde, f_dummy); } diff --git a/lpc~/lpc_filter/lpreson~.c b/lpc~/lpc_filter/lpreson~.c index c89a8e5..f9d9260 100644 --- a/lpc~/lpc_filter/lpreson~.c +++ b/lpc~/lpc_filter/lpreson~.c @@ -124,8 +124,8 @@ void lpreson_tilde_setup(void) post(". & Edward Kelly <morph_2016@yahoo.co.uk> ."); class_addmethod(lpreson_tilde_class, (t_method)lpreson_tilde_dsp, gensym("dsp"), 0); -// class_sethelpsymbol(lpreson_tilde_class, gensym("help-lpc~")); + class_addlist(lpreson_tilde_class, lpreson_tilde_list); - class_sethelpsymbol(lpreson_tilde_class, gensym("lpc-cross-synthesis.pd")); + CLASS_MAINSIGNALIN(lpreson_tilde_class, t_lpreson_tilde, f_dummy); } |