HildonNote: terminate the list of parameters in g_object_set() calls
authorAlberto Garcia <agarcia@igalia.com>
Fri, 8 May 2009 15:16:58 +0000 (17:16 +0200)
committerAlberto Garcia <agarcia@igalia.com>
Fri, 8 May 2009 15:16:58 +0000 (17:16 +0200)
* 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
hildon/hildon-note.c

index 0cbbb3c..ad92c37 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2009-05-08  Alberto Garcia  <agarcia@igalia.com>
+
+       * 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  <csaavedra@igalia.com>
 
        * hildon/hildon-sound.c (hildon_play_system_sound): Set the
index 814e456..2fa15f2 100644 (file)
@@ -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;
 }