[evolution-data-server] CamelIMAPXStore: Chain up in the notify() method.



commit 4b50ad36eba898db5b09976da64d8c20e8891c93
Author: Matthew Barnes <mbarnes redhat com>
Date:   Sat Nov 16 09:38:02 2013 -0500

    CamelIMAPXStore: Chain up in the notify() method.
    
    CamelObject provides a safety net for this method now.

 camel/providers/imapx/camel-imapx-store.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/camel/providers/imapx/camel-imapx-store.c b/camel/providers/imapx/camel-imapx-store.c
index 44f09fd..3af09c7 100644
--- a/camel/providers/imapx/camel-imapx-store.c
+++ b/camel/providers/imapx/camel-imapx-store.c
@@ -797,9 +797,9 @@ imapx_store_notify (GObject *object,
                imapx_store_update_store_flags (CAMEL_STORE (object));
        }
 
-       /* Do not chain up.  None of our ancestor classes implement the
-        * notify() method.  (XXX Though one of them should so we don't
-        * have to know this.) */
+       /* Chain up to parent's notify() method. */
+       G_OBJECT_CLASS (camel_imapx_store_parent_class)->
+               notify (object, pspec);
 }
 
 static gchar *


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