aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/groupwise-features/proxy.c
diff options
context:
space:
mode:
authorShreyas Srinivasan <sshreyas@novell.com>2006-02-16 18:54:01 +0800
committerShreyas Srinivasan <shres@src.gnome.org>2006-02-16 18:54:01 +0800
commit4dab3a631e5197c6e8f660f5eb519a5b74bb8dff (patch)
tree14def14eb0784448ec564408b25a5d141927da55 /plugins/groupwise-features/proxy.c
parent7137647a8a66b3d523fa15dd3a07865af740587e (diff)
downloadgsoc2013-evolution-4dab3a631e5197c6e8f660f5eb519a5b74bb8dff.tar
gsoc2013-evolution-4dab3a631e5197c6e8f660f5eb519a5b74bb8dff.tar.gz
gsoc2013-evolution-4dab3a631e5197c6e8f660f5eb519a5b74bb8dff.tar.bz2
gsoc2013-evolution-4dab3a631e5197c6e8f660f5eb519a5b74bb8dff.tar.lz
gsoc2013-evolution-4dab3a631e5197c6e8f660f5eb519a5b74bb8dff.tar.xz
gsoc2013-evolution-4dab3a631e5197c6e8f660f5eb519a5b74bb8dff.tar.zst
gsoc2013-evolution-4dab3a631e5197c6e8f660f5eb519a5b74bb8dff.zip
Initialize connection only when the proxy tab is clicked.
2006-02-16 Shreyas Srinivasan <sshreyas@novell.com> * proxy.c: Initialize connection only when the proxy tab is clicked. svn path=/trunk/; revision=31535
Diffstat (limited to 'plugins/groupwise-features/proxy.c')
-rw-r--r--plugins/groupwise-features/proxy.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/groupwise-features/proxy.c b/plugins/groupwise-features/proxy.c
index 22d656b2f2..f6954aa335 100644
--- a/plugins/groupwise-features/proxy.c
+++ b/plugins/groupwise-features/proxy.c
@@ -202,6 +202,7 @@ proxy_dialog_init (GObject *object)
prd->priv = priv;
+ prd->cnc = NULL;
priv->tab_dialog = NULL;
priv->xml = NULL;
priv->xml_tab = NULL;
@@ -689,8 +690,6 @@ org_gnome_proxy (EPlugin *epl, EConfigHookItemFactoryData *data)
g_signal_connect (removeProxy, "clicked", G_CALLBACK(proxy_remove_account), account);
g_signal_connect (editProxy, "clicked", G_CALLBACK(proxy_edit_account), account);
- prd->cnc = proxy_get_cnc(account);
-
priv->proxy_list = NULL;
} else if (account->enabled){
GtkWidget *label;
@@ -737,6 +736,9 @@ proxy_page_changed_cb (GtkNotebook *notebook, GtkNotebookPage *page, int num, EA
if (!prd || !prd->priv)
return TRUE;
+
+ if (!prd->cnc)
+ prd->cnc = proxy_get_cnc(account);
priv = prd->priv;