From 958451a49b1b249b0e15f9ad3707fc24872c54ac Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Tue, 24 Mar 2009 15:26:54 +0000 Subject: 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 --- classpath.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'classpath.c') 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); } -- cgit v1.2.1