From 0d4e509e46bfd8025eb421d9681399fa8f098b90 Mon Sep 17 00:00:00 2001 From: Luc Pionchon Date: Fri, 7 Apr 2006 14:00:09 +0000 Subject: [PATCH] * hildon-widgets/hildon-color-button.c (hildon_color_field_expose_event): correct parameter order. --- ChangeLog | 6 ++++++ hildon-widgets/hildon-color-button.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1eb4dc2..8e79940 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-04-07 Luc Pionchon + + * hildon-widgets/hildon-color-button.c + (hildon_color_field_expose_event): correct parameter order. + + 2006-04-07 Johan Bilien * hildon-widgets/hildon-window.c: diff --git a/hildon-widgets/hildon-color-button.c b/hildon-widgets/hildon-color-button.c index 271ac57..40aae44 100644 --- a/hildon-widgets/hildon-color-button.c +++ b/hildon-widgets/hildon-color-button.c @@ -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; } -- 1.7.9.5