diff options
author | Jeffrey Stedfast <fejj@novell.com> | 2006-06-09 05:47:46 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2006-06-09 05:47:46 +0800 |
commit | 3e0a9bfa17266aa357e44aa7c95bb5f174d86205 (patch) | |
tree | 9a38b629abb8d0f8ed5362b717801be74f91b629 /widgets | |
parent | 99587466db9866543fb05aeada5ff84e9650004f (diff) | |
download | gsoc2013-evolution-3e0a9bfa17266aa357e44aa7c95bb5f174d86205.tar.gz gsoc2013-evolution-3e0a9bfa17266aa357e44aa7c95bb5f174d86205.tar.zst gsoc2013-evolution-3e0a9bfa17266aa357e44aa7c95bb5f174d86205.zip |
Call update (bar); the rest of the fix for bug #178631.
2006-06-08 Jeffrey Stedfast <fejj@novell.com>
* e-attachment-bar.c (attachment_destroy): Call update (bar); the
rest of the fix for bug #178631.
svn path=/trunk/; revision=32099
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/misc/ChangeLog | 14 | ||||
-rw-r--r-- | widgets/misc/e-attachment-bar.c | 4 |
2 files changed, 13 insertions, 5 deletions
diff --git a/widgets/misc/ChangeLog b/widgets/misc/ChangeLog index c51b322856..a00f43d2fc 100644 --- a/widgets/misc/ChangeLog +++ b/widgets/misc/ChangeLog @@ -1,3 +1,8 @@ +2006-06-08 Jeffrey Stedfast <fejj@novell.com> + + * e-attachment-bar.c (attachment_destroy): Call update (bar); the + rest of the fix for bug #178631. + 2006-06-07 Federico Mena Quintero <federico@novell.com> * e-map.c (e_map_class_init): Don't use gtk_signal_new() for the @@ -7,15 +12,16 @@ 2006-06-02 Hiroyuki Ikezoe <poincare@ikezoe.net> ** Fixes bug 343494 - * e-search-bar.c: (add_button): Use gtk_button_set_image if GTK+ is + + * e-search-bar.c (add_button): Use gtk_button_set_image if GTK+ is 2.6 or higher. 2006-05-30 Li Yuan <li.yuan@sun.com> Fix for #343280. - * e-search-bar.c: (add_button): - No need to add label when we use gtk_button_new_from_stock - to create a button. + + * e-search-bar.c (add_button): No need to add label when we use + gtk_button_new_from_stock to create a button. 2006-05-26 Jeffrey Stedfast <fejj@novell.com> diff --git a/widgets/misc/e-attachment-bar.c b/widgets/misc/e-attachment-bar.c index 88c0a50d74..3efe865681 100644 --- a/widgets/misc/e-attachment-bar.c +++ b/widgets/misc/e-attachment-bar.c @@ -125,8 +125,10 @@ attachment_destroy (EAttachmentBar *bar, EAttachment *attachment) if (bar->priv->batch_unref) return; - if (g_ptr_array_remove (bar->priv->attachments, attachment)) + if (g_ptr_array_remove (bar->priv->attachments, attachment)) { + update (bar); g_signal_emit (bar, signals[CHANGED], 0); + } } static void |