diff options
author | N.N. <sevyves@users.sourceforge.net> | 2003-09-17 20:10:29 +0000 |
---|---|---|
committer | N.N. <sevyves@users.sourceforge.net> | 2003-09-17 20:10:29 +0000 |
commit | 5b9132d68a789f127c3ae19a92ef4e4b38955f73 (patch) | |
tree | 731a932f3e8a261e0ca27c6705446d73c15b5a22 /modules/pdp_cmap.c | |
parent | d45a65e66ed9fd7f90ab621e00efe07989a7fa0b (diff) |
Updated for PiDiP 0.12.6
svn path=/trunk/externals/pidip/; revision=994
Diffstat (limited to 'modules/pdp_cmap.c')
-rw-r--r-- | modules/pdp_cmap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/pdp_cmap.c b/modules/pdp_cmap.c index 3d8524f..ae2f516 100644 --- a/modules/pdp_cmap.c +++ b/modules/pdp_cmap.c @@ -513,7 +513,7 @@ extern "C" void pdp_cmap_setup(void) { - post( pdp_cmap_version ); + // post( pdp_cmap_version ); pdp_cmap_class = class_new(gensym("pdp_cmap"), (t_newmethod)pdp_cmap_new, (t_method)pdp_cmap_free, sizeof(t_pdp_cmap), 0, A_NULL); @@ -532,6 +532,7 @@ void pdp_cmap_setup(void) class_addmethod(pdp_cmap_class, (t_method)pdp_cmap_delete, gensym("delete"), A_DEFFLOAT, A_NULL); class_addmethod(pdp_cmap_class, (t_method)pdp_cmap_resize, gensym("resize"), A_DEFFLOAT, A_NULL); class_addmethod(pdp_cmap_class, (t_method)pdp_cmap_setcur, gensym("setcur"), A_DEFFLOAT, A_DEFFLOAT, A_NULL); + class_sethelpsymbol( pdp_cmap_class, gensym("pdp_cmap.pd") ); } #ifdef __cplusplus |