diff options
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/component/addressbook-config.c | 2 | ||||
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor.c | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/addressbook/gui/component/addressbook-config.c b/addressbook/gui/component/addressbook-config.c index ce515e1b00..68aed30a07 100644 --- a/addressbook/gui/component/addressbook-config.c +++ b/addressbook/gui/component/addressbook-config.c @@ -1604,6 +1604,8 @@ ldap_dialog_new (GNOME_Evolution_Shell shell) dialog->page = glade_xml_get_widget (dialog->gui, "addressbook-sources"); + gtk_widget_show_all (dialog->page); + return dialog; } diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c index 0efce5f4f6..107031d9f4 100644 --- a/addressbook/gui/contact-editor/e-contact-editor.c +++ b/addressbook/gui/contact-editor/e-contact-editor.c @@ -1857,6 +1857,8 @@ e_contact_editor_build_phone_ui (EContactEditor *editor) g_object_unref(editor->phone_popup); editor->phone_popup = gnome_popup_menu_new(editor->phone_info); + g_object_ref (editor->phone_popup); + gtk_object_sink (GTK_OBJECT (editor->phone_popup)); } } @@ -1883,6 +1885,8 @@ e_contact_editor_build_email_ui (EContactEditor *editor) g_object_unref(editor->email_popup); editor->email_popup = gnome_popup_menu_new(editor->email_info); + g_object_ref (editor->email_popup); + gtk_object_sink (GTK_OBJECT (editor->email_popup)); } } @@ -1909,6 +1913,8 @@ e_contact_editor_build_address_ui (EContactEditor *editor) g_object_unref(editor->address_popup); editor->address_popup = gnome_popup_menu_new(editor->address_info); + g_object_ref (editor->address_popup); + gtk_object_sink (GTK_OBJECT (editor->address_popup)); } } |