diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2005-11-27 07:11:07 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2005-11-27 07:11:07 +0000 |
commit | a92ce7afde71bf40294475a94d5ef33ccf991fbb (patch) | |
tree | 9c8615bb585b7985ec25cd1039f4b86b64f7cd02 | |
parent | 526f3d4a76195fe3d94cb7c77e0c40950a1f940d (diff) |
removed class_sethelpsymbol() since its unneeded and causes problems
svn path=/trunk/externals/pdogg/; revision=4052
-rw-r--r-- | oggamp~/oggamp~.c | 3 | ||||
-rw-r--r-- | oggcast~/oggcast~.c | 1 | ||||
-rw-r--r-- | oggread~/oggread~.c | 1 | ||||
-rw-r--r-- | oggwrite~/oggwrite~.c | 1 |
4 files changed, 1 insertions, 5 deletions
diff --git a/oggamp~/oggamp~.c b/oggamp~/oggamp~.c index 662c58b..59a9835 100644 --- a/oggamp~/oggamp~.c +++ b/oggamp~/oggamp~.c @@ -1424,5 +1424,4 @@ void oggamp_tilde_setup(void) class_addmethod(oggamp_class, (t_method)oggamp_connect_url, gensym("connecturl"), A_SYMBOL, 0);
class_addmethod(oggamp_class, (t_method)oggamp_recover, gensym("recover"), A_FLOAT, 0);
class_addmethod(oggamp_class, (t_method)oggamp_print, gensym("print"), 0);
- class_sethelpsymbol(oggamp_class, gensym("help-oggamp~.pd"));
-}
\ No newline at end of file +}
diff --git a/oggcast~/oggcast~.c b/oggcast~/oggcast~.c index c06b15e..ae25aed 100644 --- a/oggcast~/oggcast~.c +++ b/oggcast~/oggcast~.c @@ -1463,5 +1463,4 @@ void oggcast_tilde_setup(void) class_addmethod(oggcast_class, (t_method)oggcast_vbr, gensym("vbr"), A_FLOAT, A_FLOAT, A_FLOAT, 0);
class_addmethod(oggcast_class, (t_method)oggcast_server, gensym("server"), A_FLOAT, 0);
class_addanything(oggcast_class, oggcast_comment);
- class_sethelpsymbol(oggcast_class, gensym("help-oggcast~.pd"));
}
diff --git a/oggread~/oggread~.c b/oggread~/oggread~.c index 9056c0e..115cac4 100644 --- a/oggread~/oggread~.c +++ b/oggread~/oggread~.c @@ -410,5 +410,4 @@ void oggread_tilde_setup(void) class_addmethod(oggread_class, (t_method)oggread_resume, gensym("resume"), 0);
class_addmethod(oggread_class, (t_method)oggread_seek, gensym("seek"), A_DEFFLOAT, 0);
class_addmethod(oggread_class, (t_method)oggread_stop, gensym("stop"), 0);
- class_sethelpsymbol(oggread_class, gensym("help-oggread~.pd"));
}
diff --git a/oggwrite~/oggwrite~.c b/oggwrite~/oggwrite~.c index 0fbbf5c..4ac6221 100644 --- a/oggwrite~/oggwrite~.c +++ b/oggwrite~/oggwrite~.c @@ -739,7 +739,6 @@ void oggwrite_tilde_setup(void) oggwrite_class = class_new(gensym("oggwrite~"), (t_newmethod)oggwrite_new, (t_method)oggwrite_free,
sizeof(t_oggwrite), 0, 0);
CLASS_MAINSIGNALIN(oggwrite_class, t_oggwrite, x_f );
- class_sethelpsymbol(oggwrite_class, gensym("help-oggwrite~.pd"));
class_addmethod(oggwrite_class, (t_method)oggwrite_dsp, gensym("dsp"), 0);
class_addmethod(oggwrite_class, (t_method)oggwrite_open, gensym("open"), A_SYMBOL, 0);
class_addmethod(oggwrite_class, (t_method)oggwrite_start, gensym("start"), 0);
|