Removed stray g_print
authorNeil J. Patel <njp@openedhand.com>
Mon, 11 Jun 2007 16:40:38 +0000 (16:40 +0000)
committerNeil J. Patel <njp@openedhand.com>
Mon, 11 Jun 2007 16:40:38 +0000 (16:40 +0000)
ChangeLog
examples/gtk-clutter-events.c

index 08dd4ab..e4c7213 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,21 @@
+2007-06-11  Neil Jagdish Patel  <njp@f7>
+
+       * examples/gtk-clutter-events.c: (create_colors):
+       Removed stray g_print
+
+2007-06-11  Neil Jagdish Patel  <njp@o-hand.com>
+
+       * examples/Makefile.am:
+       * examples/gtk-clutter-events.c: (on_gtk_entry_changed),
+       (on_x_changed), (on_y_changed), (on_z_changed),
+       (on_opacity_changed), (create_colors), (main):
+       Added another example whihc shows some interaction between gtk and
+       the stage.
+
+       * examples/gtk-clutter-test.c: (main):
+       Updated to work with clutter-0.3
+
+
 2007-04-17  Emmanuele Bassi  <ebassi@openedhand.com>
 
        * configure.ac: Branch for development; bump to 0.3.0, to
index ee327af..0649695 100644 (file)
@@ -68,8 +68,7 @@ create_colors (EventApp *app, ClutterColor *stage, ClutterColor *text)
   stage->red = (guint8) ((color.red/65535.0) * 255);
   stage->green = (guint8) ((color.green/65535.0) * 255);
   stage->blue  = (guint8) ((color.blue/65535.0) * 255);
-  g_print ("%d %d %d\n", stage->red, stage->green, stage->blue);
-
+  
   /* Now the text color */
   color = style->text[GTK_STATE_NORMAL];
   text->red =(guint8) ((color.red/65535.0) * 255);