diff options
author | Chris Toshok <toshok@ximian.com> | 2001-08-09 00:55:27 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2001-08-09 00:55:27 +0800 |
commit | d364b46165a668e8f8760d3e4ec8335a6f05dab6 (patch) | |
tree | 760684987e9bd455fc4526e277b7fe48e5fc641a /addressbook/gui | |
parent | a55c9243b24d7c89559925b2a505fe9e4f9d0d54 (diff) | |
download | gsoc2013-evolution-d364b46165a668e8f8760d3e4ec8335a6f05dab6.tar.gz gsoc2013-evolution-d364b46165a668e8f8760d3e4ec8335a6f05dab6.tar.zst gsoc2013-evolution-d364b46165a668e8f8760d3e4ec8335a6f05dab6.zip |
better to assume that we can write to the local addressbook than that we
2001-08-08 Chris Toshok <toshok@ximian.com>
* gui/contact-editor/e-contact-quick-add.c (ce_have_book): better
to assume that we can write to the local addressbook than that we
can't write to it :)
svn path=/trunk/; revision=11798
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-quick-add.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/gui/contact-editor/e-contact-quick-add.c b/addressbook/gui/contact-editor/e-contact-quick-add.c index 096f038dd7..64e4202291 100644 --- a/addressbook/gui/contact-editor/e-contact-quick-add.c +++ b/addressbook/gui/contact-editor/e-contact-quick-add.c @@ -179,7 +179,7 @@ ce_have_book (EBook *book, gpointer closure) g_warning ("Couldn't open local address book."); quick_add_unref (qa); } else { - EContactEditor *contact_editor = e_contact_editor_new (book, qa->card, TRUE, FALSE /* XXX */); + EContactEditor *contact_editor = e_contact_editor_new (book, qa->card, TRUE, TRUE /* XXX */); gtk_signal_connect (GTK_OBJECT (contact_editor), "card_added", |