[PD-cvs] pd/src desire.c,1.1.2.59,1.1.2.60

Thomas Grill xovo at users.sourceforge.net
Thu Nov 24 22:36:06 CET 2005


Update of /cvsroot/pure-data/pd/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29577/src

Modified Files:
      Tag: devel_0_39
	desire.c 
Log Message:
post-Matju fixes for MSVC

Index: desire.c
===================================================================
RCS file: /cvsroot/pure-data/pd/src/Attic/desire.c,v
retrieving revision 1.1.2.59
retrieving revision 1.1.2.60
diff -C2 -d -r1.1.2.59 -r1.1.2.60
*** desire.c	24 Nov 2005 21:28:34 -0000	1.1.2.59
--- desire.c	24 Nov 2005 21:36:03 -0000	1.1.2.60
***************
*** 11546,11553 ****
  
  void g_text_setup(void) {
      text_class = class_new(gensym("text"), 0, 0, sizeof(t_text),
      	CLASS_NOINLET | CLASS_PATCHABLE, 0);
  
!     t_class *c = message_class = class_new(gensym("message"), 0,0,
      	sizeof(t_message), CLASS_PATCHABLE, 0);
      class_addbang(c, message_bang);
--- 11546,11554 ----
  
  void g_text_setup(void) {
+ 	t_class *c;
      text_class = class_new(gensym("text"), 0, 0, sizeof(t_text),
      	CLASS_NOINLET | CLASS_PATCHABLE, 0);
  
!     c = message_class = class_new(gensym("message"), 0,0,
      	sizeof(t_message), CLASS_PATCHABLE, 0);
      class_addbang(c, message_bang);
***************
*** 11970,11975 ****
  static void *bng_new(t_symbol *s, int argc, t_atom *argv)
  {
-     post("@@@@@@@ bng_new @@@@@@");
      t_bng *x = (t_bng *)iemgui_new(bng_class);
      x->ftbreak = 250;
      x->fthold = 50;
--- 11971,11976 ----
  static void *bng_new(t_symbol *s, int argc, t_atom *argv)
  {
      t_bng *x = (t_bng *)iemgui_new(bng_class);
+     post("@@@@@@@ bng_new @@@@@@");
      x->ftbreak = 250;
      x->fthold = 50;
***************
*** 12790,12795 ****
  static void *wire_new(t_symbol *s, int argc, t_atom *argv)
  {
-     post ("----- wire_new -----");
      t_wire *x = (t_wire *)iemgui_new(wire_class);
      x->from = 0;
      x->outport = 0;
--- 12791,12796 ----
  static void *wire_new(t_symbol *s, int argc, t_atom *argv)
  {
      t_wire *x = (t_wire *)iemgui_new(wire_class);
+     post ("----- wire_new -----");
      x->from = 0;
      x->outport = 0;





More information about the Pd-cvs mailing list