summaryrefslogtreecommitdiff
path: root/src/libedataserver
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2018-10-12 22:40:56 +0200
committerMilan Crha <mcrha@redhat.com>2018-10-12 22:40:56 +0200
commita897fb4c676c7032c268fa0161454b411aaf59c2 (patch)
tree66abde843a4933cb136922868102bf5aaf3e7e02 /src/libedataserver
parentd43f9c2be80311edf1222ad9c465d0178caab9a9 (diff)
downloadevolution-data-server-a897fb4c676c7032c268fa0161454b411aaf59c2.tar.gz
Correct e-source-camel.c to unset G_PARAM_EXPLICIT_NOTIFY
Otherwise the CamelSettings are not properly used. This had been caused by the changes from the previous commit.
Diffstat (limited to 'src/libedataserver')
-rw-r--r--src/libedataserver/e-source-camel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libedataserver/e-source-camel.c b/src/libedataserver/e-source-camel.c
index 5dbdc764d..631f06fa5 100644
--- a/src/libedataserver/e-source-camel.c
+++ b/src/libedataserver/e-source-camel.c
@@ -142,7 +142,7 @@ param_spec_clone (GParamSpec *pspec)
name = g_param_spec_get_name (pspec);
nick = g_param_spec_get_nick (pspec);
blurb = g_param_spec_get_blurb (pspec);
- flags = (pspec->flags & ~(G_PARAM_STATIC_STRINGS));
+ flags = (pspec->flags & ~(G_PARAM_EXPLICIT_NOTIFY | G_PARAM_STATIC_STRINGS));
if (G_IS_PARAM_SPEC_BOOLEAN (pspec)) {
GParamSpecBoolean *pspec_boolean = G_PARAM_SPEC_BOOLEAN (pspec);