aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/contact-list-editor/e-contact-list-editor.h
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2004-07-13 02:23:43 +0800
committerChris Toshok <toshok@src.gnome.org>2004-07-13 02:23:43 +0800
commit9b6df5d229e8e70afa3c1eee0297a5f42d234829 (patch)
tree944400cb6ca59f075cc11087b74daec39075f0fb /addressbook/gui/contact-list-editor/e-contact-list-editor.h
parente32aee64df4e58164851079e98e6e392a434f5cc (diff)
downloadgsoc2013-evolution-9b6df5d229e8e70afa3c1eee0297a5f42d234829.tar
gsoc2013-evolution-9b6df5d229e8e70afa3c1eee0297a5f42d234829.tar.gz
gsoc2013-evolution-9b6df5d229e8e70afa3c1eee0297a5f42d234829.tar.bz2
gsoc2013-evolution-9b6df5d229e8e70afa3c1eee0297a5f42d234829.tar.lz
gsoc2013-evolution-9b6df5d229e8e70afa3c1eee0297a5f42d234829.tar.xz
gsoc2013-evolution-9b6df5d229e8e70afa3c1eee0297a5f42d234829.tar.zst
gsoc2013-evolution-9b6df5d229e8e70afa3c1eee0297a5f42d234829.zip
[ part of fix for bug #56520 ]
2004-07-12 Chris Toshok <toshok@ximian.com> [ part of fix for bug #56520 ] * gui/contact-list-editor/e-contact-list-editor.c (e_contact_list_editor_init): init allows_contact_lists to TRUE. (list_deleted_cb): nuke, it's unused. (e_contact_list_editor_set_property): check if the book supports contact lists, and desensitize things if it doesn't. (select_names_ok_cb): this isn't valid C. declarations must come before code. (set_editable): the editable state of the dialog depends on whether or not the backend supports contact lists. (command_state_changed): the ok button needs to depend on allows_contact_lists. (extract_info): quiet compiler warning. * gui/contact-list-editor/e-contact-list-editor.h (struct _EContactListEditor): add allow_contact_lists. svn path=/trunk/; revision=26625
Diffstat (limited to 'addressbook/gui/contact-list-editor/e-contact-list-editor.h')
-rw-r--r--addressbook/gui/contact-list-editor/e-contact-list-editor.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/addressbook/gui/contact-list-editor/e-contact-list-editor.h b/addressbook/gui/contact-list-editor/e-contact-list-editor.h
index eb284b3fa4..ca6aef85bc 100644
--- a/addressbook/gui/contact-list-editor/e-contact-list-editor.h
+++ b/addressbook/gui/contact-list-editor/e-contact-list-editor.h
@@ -94,6 +94,9 @@ struct _EContactListEditor
/* Whether the contact editor will accept modifications */
guint editable : 1;
+ /* Whether the target book accepts storing of contact lists */
+ guint allows_contact_lists : 1;
+
/* Whether an async wombat call is in progress */
guint in_async_call : 1;