diff options
author | Bill Zhu <bill.zhu@sun.com> | 2004-02-26 22:05:55 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-02-26 22:05:55 +0800 |
commit | f1fe42cea9f644323dd8d9c38c42973c7bde82c2 (patch) | |
tree | 460332d21b95d4e9f2bfaff640ae006469d18c68 /widgets/misc | |
parent | f7d587939d8df919d50fff368ebaffde4276ea25 (diff) | |
download | gsoc2013-evolution-f1fe42cea9f644323dd8d9c38c42973c7bde82c2.tar gsoc2013-evolution-f1fe42cea9f644323dd8d9c38c42973c7bde82c2.tar.gz gsoc2013-evolution-f1fe42cea9f644323dd8d9c38c42973c7bde82c2.tar.bz2 gsoc2013-evolution-f1fe42cea9f644323dd8d9c38c42973c7bde82c2.tar.lz gsoc2013-evolution-f1fe42cea9f644323dd8d9c38c42973c7bde82c2.tar.xz gsoc2013-evolution-f1fe42cea9f644323dd8d9c38c42973c7bde82c2.tar.zst gsoc2013-evolution-f1fe42cea9f644323dd8d9c38c42973c7bde82c2.zip |
Before Update the bonobo ui component, remove it first.
2004-02-26 Bill Zhu <bill.zhu@sun.com>
* e-search-bar.c (setup_bonobo_menus): Before Update the bonobo ui
component, remove it first.
Fixes #54788
svn path=/trunk/; revision=24881
Diffstat (limited to 'widgets/misc')
-rw-r--r-- | widgets/misc/ChangeLog | 7 | ||||
-rw-r--r-- | widgets/misc/e-search-bar.c | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/widgets/misc/ChangeLog b/widgets/misc/ChangeLog index 36b89c7c8a..e1a1c49a69 100644 --- a/widgets/misc/ChangeLog +++ b/widgets/misc/ChangeLog @@ -1,3 +1,10 @@ +2004-02-26 Bill Zhu <bill.zhu@sun.com> + + * e-search-bar.c (setup_bonobo_menus): Before Update the bonobo ui + component, remove it first. + + Fixes #54788 + 2004-02-11 Rodney Dawes <dobey@ximian.com> * e-multi-config-dialog.c (impl_response): Change the filename and diff --git a/widgets/misc/e-search-bar.c b/widgets/misc/e-search-bar.c index d99a4de742..bcc6413cf9 100644 --- a/widgets/misc/e-search-bar.c +++ b/widgets/misc/e-search-bar.c @@ -556,6 +556,7 @@ setup_bonobo_menus (ESearchBar *esb) g_string_append (xml, "</placeholder>"); g_string_append (xml, "</submenu>"); + remove_bonobo_menus (esb); bonobo_ui_component_set (esb->ui_component, "/menu/SearchPlaceholder", xml->str, NULL); g_string_free (xml, TRUE); |