diff options
author | Lauris Kaplinski <lauris@src.gnome.org> | 2000-09-08 02:30:30 +0800 |
---|---|---|
committer | Lauris Kaplinski <lauris@src.gnome.org> | 2000-09-08 02:30:30 +0800 |
commit | 0db696fa4205edb578c56cade278061b4bbe54f2 (patch) | |
tree | b481424b3de3f269586f7658dd463864974bda6c /mail/mail-config-gui.c | |
parent | 722a05828e68522a639a04ae0b13855e6b70820b (diff) | |
download | gsoc2013-evolution-0db696fa4205edb578c56cade278061b4bbe54f2.tar gsoc2013-evolution-0db696fa4205edb578c56cade278061b4bbe54f2.tar.gz gsoc2013-evolution-0db696fa4205edb578c56cade278061b4bbe54f2.tar.bz2 gsoc2013-evolution-0db696fa4205edb578c56cade278061b4bbe54f2.tar.lz gsoc2013-evolution-0db696fa4205edb578c56cade278061b4bbe54f2.tar.xz gsoc2013-evolution-0db696fa4205edb578c56cade278061b4bbe54f2.tar.zst gsoc2013-evolution-0db696fa4205edb578c56cade278061b4bbe54f2.zip |
Bunch of unicode related changes
svn path=/trunk/; revision=5235
Diffstat (limited to 'mail/mail-config-gui.c')
-rw-r--r-- | mail/mail-config-gui.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/mail-config-gui.c b/mail/mail-config-gui.c index 49466b64a4..1cb972dc6b 100644 --- a/mail/mail-config-gui.c +++ b/mail/mail-config-gui.c @@ -741,7 +741,7 @@ service_page_item_auth_fill (MailDialogServicePage *page, for (; authtypes; authtypes = authtypes->next) { authtype = authtypes->data; - item = e_utf8_gtk_menu_item_new_with_label (_(authtype->name)); + item = gtk_menu_item_new_with_label (_(authtype->name)); if (!firstitem) firstitem = item; spitem->auth_items = g_list_append (spitem->auth_items, item); @@ -1119,7 +1119,7 @@ service_page_new (const char *label_text, GSList *services) gtk_notebook_append_page (GTK_NOTEBOOK (page->notebook), spitem->vbox, NULL); - spitem->item = e_utf8_gtk_menu_item_new_with_label (_(mcs->provider->name)); + spitem->item = gtk_menu_item_new_with_label (_(mcs->provider->name)); if (!first_item) first_item = spitem->item; |