diff options
author | Michael Zucci <zucchi@src.gnome.org> | 2004-05-12 11:58:08 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-05-12 11:58:08 +0800 |
commit | 0f8af52d9c5e83137c7c80f2b0bca8a60522c83a (patch) | |
tree | 3904f62f351cfc07d67f173e61f08b6ae9811d83 /widgets | |
parent | c5347b4bda3777b61a85f3765a57de06b5e38ebc (diff) | |
download | gsoc2013-evolution-0f8af52d9c5e83137c7c80f2b0bca8a60522c83a.tar.gz gsoc2013-evolution-0f8af52d9c5e83137c7c80f2b0bca8a60522c83a.tar.zst gsoc2013-evolution-0f8af52d9c5e83137c7c80f2b0bca8a60522c83a.zip |
added fixme for stock+label case, which doesn't work.
svn path=/trunk/; revision=25875
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/misc/e-error.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/widgets/misc/e-error.c b/widgets/misc/e-error.c index 0aceed624f..0d18da6a7b 100644 --- a/widgets/misc/e-error.c +++ b/widgets/misc/e-error.c @@ -408,6 +408,8 @@ 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) { + /* FIXME: So although this looks like it will work, it wont. + Need to do it the hard way ... */ w = gtk_button_new_from_stock(b->stock); gtk_button_set_label((GtkButton *)w, b->label); gtk_widget_show(w); |