From e371081aaf336c2f55cac8c6f47b30a20132ec30 Mon Sep 17 00:00:00 2001 From: Alberto Garcia Date: Fri, 8 May 2009 17:16:58 +0200 Subject: [PATCH] HildonNote: terminate the list of parameters in g_object_set() calls * hildon/hildon-note.c (hildon_note_new_information_with_icon_name) (hildon_note_new_confirmation_with_icon_name): Terminate the list of parameters in g_object_set() calls Fixes: NB#115166 (Formatting memory card is not taking place) --- ChangeLog | 9 +++++++++ hildon/hildon-note.c | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0cbbb3c..ad92c37 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2009-05-08 Alberto Garcia + + * hildon/hildon-note.c + (hildon_note_new_information_with_icon_name) + (hildon_note_new_confirmation_with_icon_name): + Terminate the list of parameters in g_object_set() calls + + Fixes: NB#115166 (Formatting memory card is not taking place) + 2009-05-08 Claudio Saavedra * hildon/hildon-sound.c (hildon_play_system_sound): Set the diff --git a/hildon/hildon-note.c b/hildon/hildon-note.c index 814e456..2fa15f2 100644 --- a/hildon/hildon-note.c +++ b/hildon/hildon-note.c @@ -851,7 +851,7 @@ hildon_note_new_confirmation_with_icon_name (GtkWindow *parent, GtkWidget *dialog; dialog = hildon_note_new_confirmation (parent, description); - g_object_set (dialog, "icon", icon_name); + g_object_set (dialog, "icon", icon_name, NULL); return dialog; } @@ -915,7 +915,7 @@ hildon_note_new_information_with_icon_name (GtkWindow * parent, GtkWidget *dialog; dialog = hildon_note_new_information (parent, description); - g_object_set (dialog, "icon", icon_name); + g_object_set (dialog, "icon", icon_name, NULL); return dialog; } -- 1.7.9.5