[PD-cvs] SF.net SVN: pure-data: [9720] trunk/externals/ggee/gui/gcanvas.c

eighthave at users.sourceforge.net eighthave at users.sourceforge.net
Tue Apr 22 06:20:38 CEST 2008


Revision: 9720
          http://pure-data.svn.sourceforge.net/pure-data/?rev=9720&view=rev
Author:   eighthave
Date:     2008-04-21 21:20:38 -0700 (Mon, 21 Apr 2008)

Log Message:
-----------
quickly added third outlet from PDa source so that this object won't break PDa patches when they are edited in Pd-extended

Modified Paths:
--------------
    trunk/externals/ggee/gui/gcanvas.c

Modified: trunk/externals/ggee/gui/gcanvas.c
===================================================================
--- trunk/externals/ggee/gui/gcanvas.c	2008-04-21 18:33:22 UTC (rev 9719)
+++ trunk/externals/ggee/gui/gcanvas.c	2008-04-22 04:20:38 UTC (rev 9720)
@@ -1,7 +1,7 @@
 /* (C) Guenter Geiger <geiger at xdv.org> */
 
 
-#include <m_pd.h>
+#include "m_pd.h"
 #include "g_canvas.h"
 
 /* ------------------------ gcanvas ----------------------------- */
@@ -18,6 +18,7 @@
      t_object x_obj;
      t_glist * x_glist;
      t_outlet* out2;
+     t_outlet* out3;
      int x_width;
      int x_height;
      int x;
@@ -249,9 +250,12 @@
 
     outlet_new(&x->x_obj, &s_float);
     x->out2 = outlet_new(&x->x_obj, &s_float);
+    x->out3 = outlet_new(&x->x_obj, &s_float);
     return (x);
 }
 
+
+
 void gcanvas_setup(void)
 {
     gcanvas_class = class_new(gensym("gcanvas"), (t_newmethod)gcanvas_new, 0,


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Pd-cvs mailing list