diff options
-rw-r--r-- | addressbook/ChangeLog | 10 | ||||
-rw-r--r-- | addressbook/gui/component/addressbook-config.c | 2 | ||||
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor.c | 6 |
3 files changed, 18 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 1d67a1b6ce..52728998a1 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,13 @@ +2002-11-16 Chris Toshok <toshok@ximian.com> + + * gui/contact-editor/e-contact-editor.c + (e_contact_editor_build_phone_ui): sink the popup. + (e_contact_editor_build_email_ui): same. + (e_contact_editor_build_address_ui): same. + + * gui/component/addressbook-config.c (ldap_dialog_new): show + everything from dialog->page down, so custom widgets show up. + 2002-11-15 Ettore Perazzoli <ettore@ximian.com> * gui/component/Makefile.am: Added rule to generate 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)); } } |