aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlban Browaeys <prahal@yahoo.com>2012-11-11 19:42:38 +0800
committerMatthew Barnes <mbarnes@redhat.com>2012-11-11 19:47:23 +0800
commit13007adfb7e210b07340f9eea41f6a3998c48b1d (patch)
tree60afd2457b1193a4ed4d8f0b9d52478acc616595
parent46b11b90c0b99d253bbc372999d9ad1b982f06ee (diff)
downloadgsoc2013-evolution-13007adfb7e210b07340f9eea41f6a3998c48b1d.tar.gz
gsoc2013-evolution-13007adfb7e210b07340f9eea41f6a3998c48b1d.tar.zst
gsoc2013-evolution-13007adfb7e210b07340f9eea41f6a3998c48b1d.zip
Bug 688084 - Cannot configure connection to webdav address book
(cherry picked from commit 303096a35e71541b3412d34bd63232e3939a15f8) Conflicts: modules/book-config-webdav/evolution-book-config-webdav.c
-rw-r--r--modules/book-config-webdav/evolution-book-config-webdav.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/book-config-webdav/evolution-book-config-webdav.c b/modules/book-config-webdav/evolution-book-config-webdav.c
index 78b92a6384..573d668bba 100644
--- a/modules/book-config-webdav/evolution-book-config-webdav.c
+++ b/modules/book-config-webdav/evolution-book-config-webdav.c
@@ -79,9 +79,9 @@ book_config_webdav_text_to_uri (GBinding *binding,
GValue *target_value,
gpointer user_data)
{
- GObject *target;
ESource *source;
SoupURI *soup_uri;
+ GObject *source_binding;
ESourceAuthentication *extension;
const gchar *extension_name;
const gchar *text;
@@ -93,8 +93,9 @@ book_config_webdav_text_to_uri (GBinding *binding,
if (soup_uri == NULL)
return FALSE;
- target = g_binding_get_target (binding);
- source = e_source_extension_get_source (E_SOURCE_EXTENSION (target));
+ source_binding = g_binding_get_source (binding);
+ source = e_source_extension_get_source (
+ E_SOURCE_EXTENSION (source_binding));
extension_name = E_SOURCE_EXTENSION_AUTHENTICATION;
extension = e_source_get_extension (source, extension_name);