aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-04-28 23:13:25 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-04-29 17:24:11 +0800
commit08a5b021e98d8e943cdeb2e73de394e41f52b46c (patch)
treec7ad2e76c6b38551aae1d4a2c098ad64bb2b9e69
parentb6d0c6fbc47587a2ee7ba38613efd5a387f1dbf9 (diff)
downloadgsoc2013-empathy-08a5b021e98d8e943cdeb2e73de394e41f52b46c.tar
gsoc2013-empathy-08a5b021e98d8e943cdeb2e73de394e41f52b46c.tar.gz
gsoc2013-empathy-08a5b021e98d8e943cdeb2e73de394e41f52b46c.tar.bz2
gsoc2013-empathy-08a5b021e98d8e943cdeb2e73de394e41f52b46c.tar.lz
gsoc2013-empathy-08a5b021e98d8e943cdeb2e73de394e41f52b46c.tar.xz
gsoc2013-empathy-08a5b021e98d8e943cdeb2e73de394e41f52b46c.tar.zst
gsoc2013-empathy-08a5b021e98d8e943cdeb2e73de394e41f52b46c.zip
call-handler: contact and tp-call properties are construct only
-rw-r--r--libempathy/empathy-call-handler.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy/empathy-call-handler.c b/libempathy/empathy-call-handler.c
index 820de6de5..6f7ed8b04 100644
--- a/libempathy/empathy-call-handler.c
+++ b/libempathy/empathy-call-handler.c
@@ -168,13 +168,13 @@ empathy_call_handler_class_init (EmpathyCallHandlerClass *klass)
param_spec = g_param_spec_object ("contact",
"contact", "The remote contact",
EMPATHY_TYPE_CONTACT,
- G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
+ G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS);
g_object_class_install_property (object_class, PROP_CONTACT, param_spec);
param_spec = g_param_spec_object ("tp-call",
"tp-call", "The calls channel wrapper",
EMPATHY_TYPE_TP_CALL,
- G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
+ G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS);
g_object_class_install_property (object_class, PROP_TP_CALL, param_spec);
signals[CONFERENCE_ADDED] =