aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2003-10-02 03:39:51 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2003-10-02 03:39:51 +0000
commit0afeb7e9fab7b1ec8787d88b3d5ce0914f0d0b0d (patch)
tree57a9a255788738c595e444e700e809dce67a59fb
parentc8f3e3674f08bf56407e478c3160c4392196c118 (diff)
converted helpfiles to 0.37
svn path=/trunk/externals/markex/; revision=1059
-rw-r--r--alternate-help.pd (renamed from help-alternate.pd)0
-rw-r--r--alternate.c4
-rw-r--r--gem_average-help.pd (renamed from help-gem_average.pd)0
-rw-r--r--gem_average.c4
-rw-r--r--gem_change-help.pd (renamed from help-gem_change.pd)0
-rw-r--r--gem_change.c4
-rw-r--r--gem_counter-help.pd (renamed from help-gem_counter.pd)0
-rw-r--r--gem_counter.c4
-rw-r--r--invert-help.pd (renamed from help-invert.pd)0
-rw-r--r--invert.c4
-rw-r--r--multiselect.c4
-rw-r--r--oneshot-help.pd (renamed from help-oneshot.pd)0
-rw-r--r--oneshot.c4
-rw-r--r--randomF-help.pd (renamed from help-randomF.pd)0
-rw-r--r--randomF.c4
-rw-r--r--strcat-help.pd (renamed from help-strcat.pd)0
-rw-r--r--strcat.c4
-rw-r--r--tripleLine-help.pd (renamed from help-tripleLine.pd)0
-rw-r--r--tripleLine.c4
-rw-r--r--tripleRand-help.pd (renamed from help-tripleRand.pd)0
-rw-r--r--tripleRand.c4
21 files changed, 33 insertions, 11 deletions
diff --git a/help-alternate.pd b/alternate-help.pd
index e79f2f8..e79f2f8 100644
--- a/help-alternate.pd
+++ b/alternate-help.pd
diff --git a/alternate.c b/alternate.c
index a2d7ed0..0042c74 100644
--- a/alternate.c
+++ b/alternate.c
@@ -73,6 +73,8 @@ void alternate_setup(void)
class_addmethod(alternate_class, (t_method)alternate_list,
gensym("list"), A_GIMME, A_NULL);
- class_sethelpsymbol(alternate_class, gensym("help-alternate"));
+ #if PD_MINOR_VERSION < 37
+ class_sethelpsymbol(alternate_class, gensym("alternate-help.pd"));
+#endif
}
diff --git a/help-gem_average.pd b/gem_average-help.pd
index fb923f3..fb923f3 100644
--- a/help-gem_average.pd
+++ b/gem_average-help.pd
diff --git a/gem_average.c b/gem_average.c
index 80edf85..1a82dcc 100644
--- a/gem_average.c
+++ b/gem_average.c
@@ -78,6 +78,8 @@ void gem_average_setup(void)
class_addmethod(gem_average_class, (t_method)gem_average_clear, gensym("clear"), A_NULL);
class_addmethod(gem_average_class, (t_method)gem_average_reset, gensym("reset"), A_FLOAT, 0);
- class_sethelpsymbol(gem_average_class, gensym("help-gem_average"));
+ #if PD_MINOR_VERSION < 37
+ class_sethelpsymbol(gem_average_class, gensym("gem_average-help.pd"));
+#endif
}
diff --git a/help-gem_change.pd b/gem_change-help.pd
index c02ddd1..c02ddd1 100644
--- a/help-gem_change.pd
+++ b/gem_change-help.pd
diff --git a/gem_change.c b/gem_change.c
index a577868..dc714ec 100644
--- a/gem_change.c
+++ b/gem_change.c
@@ -42,5 +42,7 @@ void gem_change_setup(void)
sizeof(t_gem_change), 0, A_NULL);
class_addfloat(gem_change_class, gem_change_float);
- class_sethelpsymbol(gem_change_class, gensym("help-gem_change"));
+ #if PD_MINOR_VERSION < 37
+ class_sethelpsymbol(gem_change_class, gensym("gem_change-help.pd"));
+#endif
}
diff --git a/help-gem_counter.pd b/gem_counter-help.pd
index 84f276e..84f276e 100644
--- a/help-gem_counter.pd
+++ b/gem_counter-help.pd
diff --git a/gem_counter.c b/gem_counter.c
index da4434f..2c3c476 100644
--- a/gem_counter.c
+++ b/gem_counter.c
@@ -224,5 +224,7 @@ void gem_counter_setup(void)
class_addmethod(gem_counter_class, (t_method)gem_counter_reset, gensym("reset"), A_GIMME, 0);
class_addmethod(gem_counter_class, (t_method)gem_counter_clear, gensym("clear"), A_GIMME, 0);
- class_sethelpsymbol(gem_counter_class, gensym("help-gem_counter"));
+ #if PD_MINOR_VERSION < 37
+ class_sethelpsymbol(gem_counter_class, gensym("gem_counter-help.pd"));
+#endif
}
diff --git a/help-invert.pd b/invert-help.pd
index 22af453..22af453 100644
--- a/help-invert.pd
+++ b/invert-help.pd
diff --git a/invert.c b/invert.c
index 0b15ec3..431f6d3 100644
--- a/invert.c
+++ b/invert.c
@@ -37,5 +37,7 @@ void invert_setup(void)
sizeof(t_invert), 0, A_NULL);
class_addfloat(invert_class, (t_method)invert_float);
- class_sethelpsymbol(invert_class, gensym("help-invert"));
+ #if PD_MINOR_VERSION < 37
+ class_sethelpsymbol(invert_class, gensym("invert-help.pd"));
+#endif
}
diff --git a/multiselect.c b/multiselect.c
index fcba331..0274d11 100644
--- a/multiselect.c
+++ b/multiselect.c
@@ -93,5 +93,7 @@ void multiselect_setup(void)
class_addmethod(multiselect_class, (t_method)multiselect_params,
gensym("params"), A_GIMME, A_NULL);
- class_sethelpsymbol(multiselect_class, gensym("help-multiselect"));
+ #if PD_MINOR_VERSION < 37
+ class_sethelpsymbol(multiselect_class, gensym("multiselect-help.pd"));
+#endif
}
diff --git a/help-oneshot.pd b/oneshot-help.pd
index f976360..f976360 100644
--- a/help-oneshot.pd
+++ b/oneshot-help.pd
diff --git a/oneshot.c b/oneshot.c
index ba2e0a0..f1718b2 100644
--- a/oneshot.c
+++ b/oneshot.c
@@ -56,6 +56,8 @@ void oneshot_setup(void)
class_addfloat(oneshot_class, (t_method)oneshot_float);
class_addbang(oneshot_class, (t_method)oneshot_bang);
class_addmethod(oneshot_class, (t_method)oneshot_clear, gensym("clear"), A_NULL);
- class_sethelpsymbol(oneshot_class, gensym("help-oneshot"));
+ #if PD_MINOR_VERSION < 37
+ class_sethelpsymbol(oneshot_class, gensym("oneshot-help.pd"));
+#endif
}
diff --git a/help-randomF.pd b/randomF-help.pd
index 148e7d6..148e7d6 100644
--- a/help-randomF.pd
+++ b/randomF-help.pd
diff --git a/randomF.c b/randomF.c
index d7e4046..20e7683 100644
--- a/randomF.c
+++ b/randomF.c
@@ -57,5 +57,7 @@ void randomF_setup(void)
class_addbang(randomF_class, (t_method)randomF_bang);
- class_sethelpsymbol(randomF_class, gensym("help-randomF"));
+ #if PD_MINOR_VERSION < 37
+ class_sethelpsymbol(randomF_class, gensym("randomF-help.pd"));
+#endif
}
diff --git a/help-strcat.pd b/strcat-help.pd
index 55f2211..55f2211 100644
--- a/help-strcat.pd
+++ b/strcat-help.pd
diff --git a/strcat.c b/strcat.c
index 4c23144..9e227ce 100644
--- a/strcat.c
+++ b/strcat.c
@@ -59,6 +59,8 @@ void strcat_setup(void)
class_addfloat(strcat_class, (t_method)strcat_float);
class_addbang(strcat_class, (t_method)strcat_bang);
- class_sethelpsymbol(strcat_class, gensym("help-strcat"));
+ #if PD_MINOR_VERSION < 37
+ class_sethelpsymbol(strcat_class, gensym("strcat-help.pd"));
+#endif
}
diff --git a/help-tripleLine.pd b/tripleLine-help.pd
index ed23fe5..ed23fe5 100644
--- a/help-tripleLine.pd
+++ b/tripleLine-help.pd
diff --git a/tripleLine.c b/tripleLine.c
index bc8530d..88d2336 100644
--- a/tripleLine.c
+++ b/tripleLine.c
@@ -126,7 +126,9 @@ void tripleLine_setup(void)
class_addmethod(tripleLine_class, (t_method)setLineParameters,
&s_list, A_GIMME, A_NULL);
- class_sethelpsymbol(tripleLine_class, gensym("help-tripleLine"));
+ #if PD_MINOR_VERSION < 37
+ class_sethelpsymbol(tripleLine_class, gensym("tripleLine-help.pd"));
+#endif
}
diff --git a/help-tripleRand.pd b/tripleRand-help.pd
index 4e6714f..4e6714f 100644
--- a/help-tripleRand.pd
+++ b/tripleRand-help.pd
diff --git a/tripleRand.c b/tripleRand.c
index 136dd61..db01aa3 100644
--- a/tripleRand.c
+++ b/tripleRand.c
@@ -103,7 +103,9 @@ void tripleRand_setup(void)
class_addmethod(tripleRand_class, (t_method)setTripleRandVals,
gensym("newVals"), A_GIMME, A_NULL);
- class_sethelpsymbol(tripleRand_class, gensym("help-tripleRand"));
+ #if PD_MINOR_VERSION < 37
+ class_sethelpsymbol(tripleRand_class, gensym("tripleRand-help.pd"));
+#endif
}