diff options
author | xclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4> | 2008-02-26 21:31:16 +0800 |
---|---|---|
committer | xclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4> | 2008-02-26 21:31:16 +0800 |
commit | 305618bc4b8d329cac8e58d84300477acb12e5f8 (patch) | |
tree | 466e29fca7fb12078f7a727b7d50ac7487a618fc /libempathy/empathy-tp-call.c | |
parent | cd24a3a0fd187316d7ab36e2226a3c195784560a (diff) | |
download | gsoc2013-empathy-305618bc4b8d329cac8e58d84300477acb12e5f8.tar gsoc2013-empathy-305618bc4b8d329cac8e58d84300477acb12e5f8.tar.gz gsoc2013-empathy-305618bc4b8d329cac8e58d84300477acb12e5f8.tar.bz2 gsoc2013-empathy-305618bc4b8d329cac8e58d84300477acb12e5f8.tar.lz gsoc2013-empathy-305618bc4b8d329cac8e58d84300477acb12e5f8.tar.xz gsoc2013-empathy-305618bc4b8d329cac8e58d84300477acb12e5f8.tar.zst gsoc2013-empathy-305618bc4b8d329cac8e58d84300477acb12e5f8.zip |
It's now safe to call emp_cli_init multiple times. Move that call to empathy_tp_call_class_init.
git-svn-id: svn+ssh://svn.gnome.org/svn/empathy/trunk@665 4ee84921-47dd-4033-b63a-18d7a039a3e4
Diffstat (limited to 'libempathy/empathy-tp-call.c')
-rw-r--r-- | libempathy/empathy-tp-call.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libempathy/empathy-tp-call.c b/libempathy/empathy-tp-call.c index 6dd24a51a..c44ffe27e 100644 --- a/libempathy/empathy-tp-call.c +++ b/libempathy/empathy-tp-call.c @@ -678,6 +678,8 @@ empathy_tp_call_class_init (EmpathyTpCallClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); + emp_cli_init (); + object_class->constructor = tp_call_constructor; object_class->finalize = tp_call_finalize; object_class->set_property = tp_call_set_property; |