diff options
author | Harish Krishnaswamy <kharish@novell.com> | 2006-04-19 15:09:09 +0800 |
---|---|---|
committer | Harish Krishnaswamy <kharish@src.gnome.org> | 2006-04-19 15:09:09 +0800 |
commit | 4b751afce260fce7b55112551681ad6d0e730446 (patch) | |
tree | 806f3038a2fe07cd8565452d82648a5e5f8c769b /plugins/groupwise-account-setup | |
parent | a82d466e9354e39be0324728f719af1990f09e6e (diff) | |
download | gsoc2013-evolution-4b751afce260fce7b55112551681ad6d0e730446.tar.gz gsoc2013-evolution-4b751afce260fce7b55112551681ad6d0e730446.tar.zst gsoc2013-evolution-4b751afce260fce7b55112551681ad6d0e730446.zip |
Add default color to the GW source created. Fixes #167102
2006-04-19 Harish Krishnaswamy <kharish@novell.com>
* camel-gw-listener.c: (add_esource):
Add default color to the GW source created.
Fixes #167102 (bugzilla.novell.com).
svn path=/trunk/; revision=31830
Diffstat (limited to 'plugins/groupwise-account-setup')
-rw-r--r-- | plugins/groupwise-account-setup/ChangeLog | 6 | ||||
-rw-r--r-- | plugins/groupwise-account-setup/camel-gw-listener.c | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/plugins/groupwise-account-setup/ChangeLog b/plugins/groupwise-account-setup/ChangeLog index df33da5d50..d4ef1e5e09 100644 --- a/plugins/groupwise-account-setup/ChangeLog +++ b/plugins/groupwise-account-setup/ChangeLog @@ -1,3 +1,9 @@ +2006-04-19 Harish Krishnaswamy <kharish@novell.com> + + * camel-gw-listener.c: (add_esource): + Add default color to the GW source created. + Fixes #167102 (bugzilla.novell.com). + 2006-03-11 Sushma Rai <rsushma@novell.com> * camel-gw-listener.c (get_addressbook_names_from_server): If use_ssl diff --git a/plugins/groupwise-account-setup/camel-gw-listener.c b/plugins/groupwise-account-setup/camel-gw-listener.c index 58e55dd512..b21b948648 100644 --- a/plugins/groupwise-account-setup/camel-gw-listener.c +++ b/plugins/groupwise-account-setup/camel-gw-listener.c @@ -206,6 +206,9 @@ add_esource (const char *conf_key, const char *group_name, const char *source_n e_source_set_property (source, "auth-domain", "Groupwise"); e_source_set_property (source, "use_ssl", use_ssl); e_source_set_property (source, "offline_sync", offline_sync ? "1" : "0" ); + + + e_source_set_color (source, 0xEEBC60); e_source_group_add_source (group, source, -1); e_source_list_sync (source_list, NULL); |