aboutsummaryrefslogtreecommitdiffstats
path: root/filter
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-11-10 18:13:00 +0800
committerChris Lahey <clahey@src.gnome.org>2000-11-10 18:13:00 +0800
commit2ff6fc12193cb1f0a0abfcefcd9479fff5f44758 (patch)
tree21e475bcc4ef872d784dc03c94b035a9db309bea /filter
parent2ad0db845a7e2991ca2bf7f1018d2bd78aad1768 (diff)
downloadgsoc2013-evolution-2ff6fc12193cb1f0a0abfcefcd9479fff5f44758.tar
gsoc2013-evolution-2ff6fc12193cb1f0a0abfcefcd9479fff5f44758.tar.gz
gsoc2013-evolution-2ff6fc12193cb1f0a0abfcefcd9479fff5f44758.tar.bz2
gsoc2013-evolution-2ff6fc12193cb1f0a0abfcefcd9479fff5f44758.tar.lz
gsoc2013-evolution-2ff6fc12193cb1f0a0abfcefcd9479fff5f44758.tar.xz
gsoc2013-evolution-2ff6fc12193cb1f0a0abfcefcd9479fff5f44758.tar.zst
gsoc2013-evolution-2ff6fc12193cb1f0a0abfcefcd9479fff5f44758.zip
Switched from using gtk_menu_item_new_with_label for the menu header to
2000-11-10 Christopher James Lahey <clahey@helixcode.com> * e-search-bar.c: Switched from using gtk_menu_item_new_with_label for the menu header to using gnome_stock_menu_item. svn path=/trunk/; revision=6530
Diffstat (limited to 'filter')
-rw-r--r--filter/ChangeLog5
-rw-r--r--filter/e-search-bar.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/filter/ChangeLog b/filter/ChangeLog
index c6e3602cf1..db3844a24c 100644
--- a/filter/ChangeLog
+++ b/filter/ChangeLog
@@ -1,3 +1,8 @@
+2000-11-10 Christopher James Lahey <clahey@helixcode.com>
+
+ * e-search-bar.c: Switched from using gtk_menu_item_new_with_label
+ for the menu header to using gnome_stock_menu_item.
+
2000-11-08 Anna Marie Dirks <anna@helixcode.com>
* e-search-bar.c: Fixed two spacing problems: first, changed
the spacing around the end of the text-entry widget so that
diff --git a/filter/e-search-bar.c b/filter/e-search-bar.c
index 0b0e34fc86..302b8de917 100644
--- a/filter/e-search-bar.c
+++ b/filter/e-search-bar.c
@@ -156,7 +156,7 @@ esb_pack_menubar(ESearchBar *esb, ESearchBarItem *items)
}
gtk_widget_show_all (menu);
- menuitem = gtk_menu_item_new_with_label(_("Search"));
+ menuitem = gnome_stock_menu_item(GNOME_STOCK_MENU_SEARCH, _("Search"));
gtk_menu_item_set_submenu(GTK_MENU_ITEM(menuitem), menu);
gtk_widget_show (menuitem);