aboutsummaryrefslogtreecommitdiff
path: root/classpath.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2009-03-24 15:26:54 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2009-03-24 15:26:54 +0000
commit958451a49b1b249b0e15f9ad3707fc24872c54ac (patch)
tree2dccabbd05e0aeff169337f74a3aa784304df54f /classpath.c
parent31299c2678a4c357d47e8a4527c3a34fdab94914 (diff)
Changed "reset" message to "rewind" since that is the same as textfile,
binfile, msgfile, etc. Plus, "reset" seems to imply that you are changing the data, which is untrue. svn path=/trunk/externals/hcs/; revision=10898
Diffstat (limited to 'classpath.c')
-rw-r--r--classpath.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/classpath.c b/classpath.c
index 10d33bb..fe5ab98 100644
--- a/classpath.c
+++ b/classpath.c
@@ -79,7 +79,7 @@ static void classpath_output(t_classpath* x)
}
-static void classpath_reset(t_classpath* x)
+static void classpath_rewind(t_classpath* x)
{
DEBUG(post("classpath_output"););
char buffer[MAXPDSTRING];
@@ -116,7 +116,7 @@ static void *classpath_new()
x->x_data_outlet = outlet_new(&x->x_obj, &s_symbol);
x->x_status_outlet = outlet_new(&x->x_obj, 0);
- classpath_reset(x);
+ classpath_rewind(x);
return (x);
}
@@ -140,8 +140,8 @@ void classpath_setup(void)
class_addbang(classpath_class,(t_method) classpath_output);
/* add inlet message methods */
- class_addmethod(classpath_class,(t_method) classpath_reset,
- gensym("reset"), 0);
+ class_addmethod(classpath_class,(t_method) classpath_rewind,
+ gensym("rewind"), 0);
class_addmethod(classpath_class,(t_method) classpath_add,gensym("add"),
A_DEFSYMBOL, 0);
}