aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2001-08-09 00:55:27 +0800
committerChris Toshok <toshok@src.gnome.org>2001-08-09 00:55:27 +0800
commitd364b46165a668e8f8760d3e4ec8335a6f05dab6 (patch)
tree760684987e9bd455fc4526e277b7fe48e5fc641a /addressbook
parenta55c9243b24d7c89559925b2a505fe9e4f9d0d54 (diff)
downloadgsoc2013-evolution-d364b46165a668e8f8760d3e4ec8335a6f05dab6.tar
gsoc2013-evolution-d364b46165a668e8f8760d3e4ec8335a6f05dab6.tar.gz
gsoc2013-evolution-d364b46165a668e8f8760d3e4ec8335a6f05dab6.tar.bz2
gsoc2013-evolution-d364b46165a668e8f8760d3e4ec8335a6f05dab6.tar.lz
gsoc2013-evolution-d364b46165a668e8f8760d3e4ec8335a6f05dab6.tar.xz
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')
-rw-r--r--addressbook/ChangeLog6
-rw-r--r--addressbook/gui/contact-editor/e-contact-quick-add.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 7bc7b3115a..5ea346cb8e 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,5 +1,11 @@
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 :)
+
+2001-08-08 Chris Toshok <toshok@ximian.com>
+
* gui/contact-list-editor/e-contact-list-editor.c (create_ui):
call e_pixmap_update so we can use the same save/save-as pixmaps
as the contact editor.
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",