From 71f097d7c90b8bce56fcd99323b0ce85b0a8f33a Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Thu, 8 Jun 2000 18:49:32 +0000 Subject: Bind Save As to save the current view of the contact as a vcard. 2000-06-08 Christopher James Lahey * contact-editor/e-contact-editor.c: Bind Save As to save the current view of the contact as a vcard. svn path=/trunk/; revision=3481 --- addressbook/gui/contact-editor/e-contact-editor.c | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'addressbook/gui') diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c index b59d77e631..1b7bf6b202 100644 --- a/addressbook/gui/contact-editor/e-contact-editor.c +++ b/addressbook/gui/contact-editor/e-contact-editor.c @@ -557,6 +557,17 @@ file_close_cb (GtkWidget *widget, gpointer data) close_dialog (ce); } +static void +file_save_as_cb (GtkWidget *widget, gpointer data) +{ + EContactEditor *ce; + ECard *card; + + ce = E_CONTACT_EDITOR (data); + card = ce->card; + e_contact_save_as("Save as VCard", card); +} + /* Menu bar */ static GnomeUIInfo file_new_menu[] = { @@ -587,7 +598,7 @@ static GnomeUIInfo file_menu[] = { GNOMEUIINFO_ITEM_NONE (N_("FIXME: S_end"), NULL, NULL), GNOMEUIINFO_SEPARATOR, GNOMEUIINFO_MENU_SAVE_ITEM (file_save_cb, NULL), - GNOMEUIINFO_MENU_SAVE_AS_ITEM (NULL, NULL), + GNOMEUIINFO_MENU_SAVE_AS_ITEM (file_save_as_cb, NULL), GNOMEUIINFO_ITEM_NONE (N_("FIXME: Save Attac_hments..."), NULL, NULL), GNOMEUIINFO_SEPARATOR, GNOMEUIINFO_ITEM_NONE (N_("FIXME: _Delete"), NULL, NULL), -- cgit v1.2.3