From: Martin Kretzschmar Date: Wed, 6 Aug 2003 17:21:46 +0000 (+0000) Subject: (eog_hig_dialog_new): add terminating NULL in g_object_set. X-Git-Tag: GPDF_0_106^0 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=ed8d29b07f2233cbaa4c134b78710619049a652b;p=evince.git (eog_hig_dialog_new): add terminating NULL in g_object_set. --- diff --git a/pdf/xpdf/eog-hig-dialog.c b/pdf/xpdf/eog-hig-dialog.c index f6b95b3d..791d4377 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; }