Update of /cvsroot/pure-data/externals/hcs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23161
Modified Files: sql_query.c Log Message: moved proxy_inlet_setup() to the main setup function on mjmogo's suggestion, makes much more sense this way
Index: sql_query.c =================================================================== RCS file: /cvsroot/pure-data/externals/hcs/sql_query.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** sql_query.c 23 Dec 2007 01:28:49 -0000 1.6 --- sql_query.c 27 Dec 2007 20:04:30 -0000 1.7 *************** *** 150,155 **** t_sql_query *x = (t_sql_query *)pd_new(sql_query_class);
- proxy_inlet_setup(); - x->x_query_binbuf = binbuf_new(); binbuf_add(x->x_query_binbuf, argc, argv); --- 150,153 ---- *************** *** 192,195 **** --- 190,196 ---- class_addbang(sql_query_class, (t_method) sql_query_output); class_addanything(sql_query_class, (t_method) sql_query_anything); + + /* set up proxy inlet class */ + proxy_inlet_setup(); }