[evolution-data-server] Correct e-source-camel.c to unset G_PARAM_EXPLICIT_NOTIFY



commit a897fb4c676c7032c268fa0161454b411aaf59c2
Author: Milan Crha <mcrha redhat com>
Date:   Fri Oct 12 22:40:56 2018 +0200

    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.

 src/libedataserver/e-source-camel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
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);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]