diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-04-30 22:43:51 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-04-30 22:43:51 +0800 |
commit | 3c358f3c18ccbe888b77ea5d6fe67c9a385a715f (patch) | |
tree | e7f835d653f1543ee534c864051c9f30360b1b36 /addressbook/contact-editor/e-contact-editor-fullname.c | |
parent | 695a9d492e4161939542844a19b7188b4a6bf99b (diff) | |
download | gsoc2013-evolution-3c358f3c18ccbe888b77ea5d6fe67c9a385a715f.tar gsoc2013-evolution-3c358f3c18ccbe888b77ea5d6fe67c9a385a715f.tar.gz gsoc2013-evolution-3c358f3c18ccbe888b77ea5d6fe67c9a385a715f.tar.bz2 gsoc2013-evolution-3c358f3c18ccbe888b77ea5d6fe67c9a385a715f.tar.lz gsoc2013-evolution-3c358f3c18ccbe888b77ea5d6fe67c9a385a715f.tar.xz gsoc2013-evolution-3c358f3c18ccbe888b77ea5d6fe67c9a385a715f.tar.zst gsoc2013-evolution-3c358f3c18ccbe888b77ea5d6fe67c9a385a715f.zip |
Fixed a string mismatch.
2000-04-30 Christopher James Lahey <clahey@helixcode.com>
* contact-editor/e-contact-editor-fullname.c,
contact-editor/fullname.glade: Fixed a string mismatch.
svn path=/trunk/; revision=2690
Diffstat (limited to 'addressbook/contact-editor/e-contact-editor-fullname.c')
-rw-r--r-- | addressbook/contact-editor/e-contact-editor-fullname.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/contact-editor/e-contact-editor-fullname.c b/addressbook/contact-editor/e-contact-editor-fullname.c index 1b37280dc1..b2e598fdde 100644 --- a/addressbook/contact-editor/e-contact-editor-fullname.c +++ b/addressbook/contact-editor/e-contact-editor-fullname.c @@ -103,7 +103,7 @@ e_contact_editor_fullname_init (EContactEditorFullname *e_contact_editor_fullnam gui = glade_xml_new (EVOLUTION_GLADEDIR "/fullname.glade", NULL); e_contact_editor_fullname->gui = gui; - widget = glade_xml_get_widget(gui, "vbox-checkfullname"); + widget = glade_xml_get_widget(gui, "table-checkfullname"); gtk_widget_ref(widget); gtk_container_remove(GTK_CONTAINER(widget->parent), widget); gtk_box_pack_start (GTK_BOX (GNOME_DIALOG (e_contact_editor_fullname)->vbox), widget, TRUE, TRUE, 0); |