[Xfce4-commits] [apps/xfce4-screenshooter] 01/01: Add missing NULL as last parameter of xfce_titled_dialog_new_with_buttons() (Bug #14973)
noreply at xfce.org
noreply at xfce.org
Wed May 22 08:41:27 CEST 2019
This is an automated email from the git hooks/post-receive script.
l a n d r y p u s h e d a c o m m i t t o b r a n c h m a s t e r
in repository apps/xfce4-screenshooter.
commit e14a75d80e3233ab850f27908031162f897f5f25
Author: Landry Breuil <landry at rhaalovely.net>
Date: Wed May 22 08:39:56 2019 +0200
Add missing NULL as last parameter of xfce_titled_dialog_new_with_buttons() (Bug #14973)
otherwise creating the imgur upload dialog blows with SIGBUS on OpenBSD.
---
lib/screenshooter-imgur-dialog.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lib/screenshooter-imgur-dialog.c b/lib/screenshooter-imgur-dialog.c
index 64fd706..695d44b 100644
--- a/lib/screenshooter-imgur-dialog.c
+++ b/lib/screenshooter-imgur-dialog.c
@@ -129,7 +129,8 @@ screenshooter_imgur_dialog_new (const gchar *upload_name,
NULL,
GTK_DIALOG_DESTROY_WITH_PARENT,
"gtk-close",
- GTK_RESPONSE_CLOSE);
+ GTK_RESPONSE_CLOSE,
+ NULL);
xfce_titled_dialog_set_subtitle (XFCE_TITLED_DIALOG (self->window), _("Your uploaded image"));
gtk_window_set_icon_name (GTK_WINDOW (self->window), "applets-screenshooter");
gtk_window_set_default_size (GTK_WINDOW (self->window), 500, 330);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list