aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc/e-error.c
diff options
context:
space:
mode:
Diffstat (limited to 'widgets/misc/e-error.c')
-rw-r--r--widgets/misc/e-error.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/widgets/misc/e-error.c b/widgets/misc/e-error.c
index 9c4fb4aafb..2cae9e0f96 100644
--- a/widgets/misc/e-error.c
+++ b/widgets/misc/e-error.c
@@ -460,12 +460,16 @@ e_error_newv(GtkWindow *parent, const char *tag, const char *arg0, va_list ap)
for (b = e->buttons;b;b=b->next) {
if (b->stock) {
if (b->label) {
+#if 0
/* FIXME: So although this looks like it will work, it wont.
- Need to do it the hard way ... */
+ Need to do it the hard way ... it also breaks the
+ default_response stuff */
w = gtk_button_new_from_stock(b->stock);
gtk_button_set_label((GtkButton *)w, b->label);
gtk_widget_show(w);
gtk_dialog_add_action_widget(dialog, w, b->response);
+#endif
+ gtk_dialog_add_button(dialog, b->label, b->response);
} else
gtk_dialog_add_button(dialog, b->stock, b->response);
} else