diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | widgets/misc/e-attachment-bar.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2006-05-27 Thomas Vander Stichele <thomas at apestaart dot org> + + * widgets/misc/e-attachment-bar.c: (update): + Fix compilation by adding missing ( + 2006-05-22 Harish Krishnaswamy <kharish@novell.com> * configure.in: Update intltool requirements. diff --git a/widgets/misc/e-attachment-bar.c b/widgets/misc/e-attachment-bar.c index 02b78f1c76..88c0a50d74 100644 --- a/widgets/misc/e-attachment-bar.c +++ b/widgets/misc/e-attachment-bar.c @@ -401,7 +401,7 @@ update (EAttachmentBar *bar) else if (attachment->sign == CAMEL_CIPHER_VALIDITY_SIGN_GOOD) sign = e_icon_factory_get_icon ("stock_signature-ok", E_ICON_SIZE_MENU); else - sign = e_icon_factory_get_icon "stock_signature", E_ICON_SIZE_MENU); + sign = e_icon_factory_get_icon ("stock_signature", E_ICON_SIZE_MENU); x = gdk_pixbuf_get_width (pixbuf) - 17; y = gdk_pixbuf_get_height (pixbuf) - 17; |