* hildon-widgets/hildon-color-popup.c (hildon_popup_palette_expose): removed debug...
authorLuc Pionchon <luc.pionchon@nokia.com>
Fri, 5 Aug 2005 20:34:19 +0000 (20:34 +0000)
committerLuc Pionchon <luc.pionchon@nokia.com>
Fri, 5 Aug 2005 20:34:19 +0000 (20:34 +0000)
ChangeLog
hildon-widgets/hildon-color-popup.c

index fa46fd1..3fc46b0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-08-05  Luc Pionchon  <luc.pionchon@nokia.com>
+
+       * hildon-widgets/hildon-color-popup.c
+       (hildon_popup_palette_expose): removed debug printing
+
 2005-08-03  Luc Pionchon  <luc.pionchon@nokia.com>
 
        * doc/tmpl/hildon-note.sgml: code example, use slightly less funny
index d2f5ca3..b95726e 100644 (file)
@@ -197,8 +197,6 @@ static gboolean
 hildon_popup_palette_expose (GtkWidget * widget,
                              GdkEventExpose *event, gpointer data)
 {
-  GTimer *timer = g_timer_new();
-  g_timer_start(timer);
   if (GTK_WIDGET_DRAWABLE(widget))
   {
     GdkColor color;
@@ -222,8 +220,6 @@ hildon_popup_palette_expose (GtkWidget * widget,
 
     g_object_unref(gc);
   }
-  g_timer_stop(timer);
-  g_print("---%f---\n",g_timer_elapsed(timer,NULL));
-  g_timer_destroy(timer);
+
   return TRUE;
 }