Revision: 10035 http://pure-data.svn.sourceforge.net/pure-data/?rev=10035&view=rev Author: lukeiannini Date: 2008-06-18 13:54:47 -0700 (Wed, 18 Jun 2008)
Log Message: ----------- fixed a couple debug messages
Modified Paths: -------------- trunk/externals/bbogart/entry/entry.c
Modified: trunk/externals/bbogart/entry/entry.c =================================================================== --- trunk/externals/bbogart/entry/entry.c 2008-06-18 18:47:40 UTC (rev 10034) +++ trunk/externals/bbogart/entry/entry.c 2008-06-18 20:54:47 UTC (rev 10035) @@ -148,7 +148,6 @@ sprintf(buf,"%s.window%lx", x->canvas_id, (long unsigned int)x); x->window_tag = getbytes(strlen(buf)); strcpy(x->window_tag, buf); /* Tk ID for the resizing "window" */ - post("");
sprintf(buf,"%s.handle%lx", x->canvas_id, (long unsigned int)x); x->handle_id = getbytes(strlen(buf)); @@ -166,7 +165,7 @@ static int calculate_onset(t_entry *x, t_glist *glist, int current_iolet, int total_iolets) { - post("calculate_onset"); + DEBUG(post("calculate_onset");); return(text_xpix(&x->x_obj, glist) + (x->x_width - IOWIDTH) \ * current_iolet / (total_iolets == 1 ? 1 : total_iolets - 1)); }
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.