diff options
author | Gediminas Paulauskas <menesis@delfi.lt> | 2001-05-12 18:02:29 +0800 |
---|---|---|
committer | Gediminas Paulauskas <menesis@src.gnome.org> | 2001-05-12 18:02:29 +0800 |
commit | 9a9a51c562d402f2324e662125859d7b23410784 (patch) | |
tree | 4e2b9ed44e360c8ffc550a11e307aeae397ff099 /widgets/misc/e-search-bar.c | |
parent | 2424c155946bcc29cd1265b85a7c59b3938adf3c (diff) | |
download | gsoc2013-evolution-9a9a51c562d402f2324e662125859d7b23410784.tar.gz gsoc2013-evolution-9a9a51c562d402f2324e662125859d7b23410784.tar.zst gsoc2013-evolution-9a9a51c562d402f2324e662125859d7b23410784.zip |
my computer crashed while commiting this first time.
2001-05-12 Gediminas Paulauskas <menesis@delfi.lt>
* folder-browser-factory.c: load pixmaps for MessageCopy and
MessageForwardAttached. Thanks Wayne Davis <wfdavis@seas.upenn.edu>
for a patch.
2001-05-12 Gediminas Paulauskas <menesis@delfi.lt>
* evolution-mail.xml: add pixmaps for MessageCopy and
MessageForwardAttached. Thanks Wayne Davis <wfdavis@seas.upenn.edu>
for a patch.
2001-05-12 Gediminas Paulauskas <menesis@delfi.lt>
* po/POTFILES.in: update with new/moved files.
also:
Removed duplicated DATADIR in mail/Makefile.am
fixed warning in e-search-bar.c in my recent code there
svn path=/trunk/; revision=9783
Diffstat (limited to 'widgets/misc/e-search-bar.c')
-rw-r--r-- | widgets/misc/e-search-bar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/widgets/misc/e-search-bar.c b/widgets/misc/e-search-bar.c index c668082260..4d563208a2 100644 --- a/widgets/misc/e-search-bar.c +++ b/widgets/misc/e-search-bar.c @@ -123,7 +123,7 @@ static void add_dropdown(ESearchBar *esb, ESearchBarItem *items) str = _(items->text); if (str == items->text) { /* It may be english string, or utf8 rule name */ - item = e_utf8_gtk_menu_item_new_with_label (menu, str); + item = e_utf8_gtk_menu_item_new_with_label (GTK_MENU (menu), str); } else item = gtk_menu_item_new_with_label (str); } @@ -201,7 +201,7 @@ set_option(ESearchBar *esb, ESearchBarItem *items) str = _(items[i].text); if (str == items[i].text) { /* It may be english string, or utf8 rule name */ - item = e_utf8_gtk_menu_item_new_with_label (menu, str); + item = e_utf8_gtk_menu_item_new_with_label (GTK_MENU (menu), str); } else item = gtk_menu_item_new_with_label (str); } |