Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Kretzschmar <mkretzschmar@src.gnome.org>2003-08-06 17:21:46 (GMT)
committer Martin Kretzschmar <mkretzschmar@src.gnome.org>2003-08-06 17:21:46 (GMT)
commited8d29b07f2233cbaa4c134b78710619049a652b (patch)
tree5c707ecde2140784f82e07a0a065bce50515a308
parent93ba40dd006103880771fbd26fa9f6c1a95935be (diff)
(eog_hig_dialog_new): add terminating NULL in g_object_set.
-rw-r--r--pdf/xpdf/eog-hig-dialog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pdf/xpdf/eog-hig-dialog.c b/pdf/xpdf/eog-hig-dialog.c
index f6b95b3..791d437 100644
--- a/pdf/xpdf/eog-hig-dialog.c
+++ b/pdf/xpdf/eog-hig-dialog.c
@@ -83,7 +83,7 @@ eog_hig_dialog_new (const char *stock_id, const char *header, const char *body,
gtk_widget_show_all (hbox);
gtk_container_add (GTK_CONTAINER (GTK_DIALOG (dlg)->vbox), hbox);
- g_object_set (G_OBJECT (GTK_DIALOG (dlg)->vbox), "spacing", 12);
+ g_object_set (G_OBJECT (GTK_DIALOG (dlg)->vbox), "spacing", 12, NULL);
return dlg;
}