diff options
Diffstat (limited to 'addressbook/gui/contact-editor/e-contact-editor.c')
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c index 7c427ef6c7..664b442303 100644 --- a/addressbook/gui/contact-editor/e-contact-editor.c +++ b/addressbook/gui/contact-editor/e-contact-editor.c @@ -1066,7 +1066,6 @@ e_contact_editor_new (ECard *card, "is_read_only", is_read_only, NULL); - gtk_widget_show (ce->app); return ce; } @@ -2129,6 +2128,19 @@ e_contact_editor_raise (EContactEditor *editor) gdk_window_raise (GTK_WIDGET (editor->app)->window); } +/** + * e_contact_editor_show: + * @ce: The %EContactEditor object. + * + * Shows the dialog associated with this %EContactEditor object. + */ +void +e_contact_editor_show (EContactEditor *ce) +{ + gtk_widget_show (ce->app); +} + + GtkWidget * e_contact_editor_create_date(gchar *name, gchar *string1, gchar *string2, |