* hildon-widgets/hildon-color-button.c (hildon_color_field_expose_event): correct...
authorLuc Pionchon <luc.pionchon@nokia.com>
Fri, 7 Apr 2006 14:00:09 +0000 (14:00 +0000)
committerLuc Pionchon <luc.pionchon@nokia.com>
Fri, 7 Apr 2006 14:00:09 +0000 (14:00 +0000)
ChangeLog
hildon-widgets/hildon-color-button.c

index 1eb4dc2..8e79940 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-04-07  Luc Pionchon  <luc.pionchon@nokia.com>
+
+       * hildon-widgets/hildon-color-button.c
+       (hildon_color_field_expose_event): correct parameter order.
+
+
 2006-04-07  Johan Bilien  <johan.bilien@nokia.com>
 
        * hildon-widgets/hildon-window.c:
index 271ac57..40aae44 100644 (file)
@@ -219,8 +219,8 @@ hildon_color_field_expose_event(GtkWidget *widget, GdkEventExpose *event,
             TRUE,
             event->area.x + (INNER_BORDER_THICKNESS + OUTER_BORDER_THICKNESS),
             event->area.y + (INNER_BORDER_THICKNESS + OUTER_BORDER_THICKNESS),
-            event->area.height - ((INNER_BORDER_THICKNESS + OUTER_BORDER_THICKNESS)*2),
-            event->area.width  - ((INNER_BORDER_THICKNESS + OUTER_BORDER_THICKNESS)*2));
+            event->area.width  - ((INNER_BORDER_THICKNESS + OUTER_BORDER_THICKNESS)*2),
+            event->area.height - ((INNER_BORDER_THICKNESS + OUTER_BORDER_THICKNESS)*2));
 
     return FALSE;
 }