Update of /cvsroot/pure-data/externals/loaders In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8318
Modified Files: import.c Log Message: oops, put the outlets in the right place
Index: import.c =================================================================== RCS file: /cvsroot/pure-data/externals/loaders/import.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** import.c 21 Nov 2006 04:04:06 -0000 1.3 --- import.c 21 Nov 2006 04:08:49 -0000 1.4 *************** *** 101,106 **** x->loaded_libs = 0; x->num_libs = 0; import_load_arguments(x,argc,argv); ! return (x); }
--- 101,110 ---- x->loaded_libs = 0; x->num_libs = 0; + x->x_data_outlet = outlet_new(&x->x_obj, &s_symbol); + x->x_status_outlet = outlet_new(&x->x_obj, 0); + import_load_arguments(x,argc,argv); ! ! return (x); }
*************** *** 117,122 **** * happen, since this class is just copying the pointer of an existing * namelist that is handled elsewhere. */ - x->x_data_outlet = outlet_new(&x->x_obj, &s_symbol); - x->x_status_outlet = outlet_new(&x->x_obj, 0); }
--- 121,124 ----