diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2008-11-22 00:13:41 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-11-22 00:13:41 +0800 |
commit | cad875337faec4386962ed41a0efd15b720e73d4 (patch) | |
tree | 48d54aff88d28904b58e4d5cb0962a04e79630a0 /libempathy/empathy-utils.c | |
parent | c5cd21667001a01e62f60b05953091310cc09f65 (diff) | |
download | gsoc2013-empathy-cad875337faec4386962ed41a0efd15b720e73d4.tar gsoc2013-empathy-cad875337faec4386962ed41a0efd15b720e73d4.tar.gz gsoc2013-empathy-cad875337faec4386962ed41a0efd15b720e73d4.tar.bz2 gsoc2013-empathy-cad875337faec4386962ed41a0efd15b720e73d4.tar.lz gsoc2013-empathy-cad875337faec4386962ed41a0efd15b720e73d4.tar.xz gsoc2013-empathy-cad875337faec4386962ed41a0efd15b720e73d4.tar.zst gsoc2013-empathy-cad875337faec4386962ed41a0efd15b720e73d4.zip |
Added empathy_init function to call emp_cli_init in main. (Jonny Lamb)
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
svn path=/trunk/; revision=1737
Diffstat (limited to 'libempathy/empathy-utils.c')
-rw-r--r-- | libempathy/empathy-utils.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libempathy/empathy-utils.c b/libempathy/empathy-utils.c index b5bdb9ff7..934fc9e2c 100644 --- a/libempathy/empathy-utils.c +++ b/libempathy/empathy-utils.c @@ -37,6 +37,8 @@ #include <telepathy-glib/channel.h> #include <telepathy-glib/dbus.h> +#include <extensions/extensions.h> + #include "empathy-utils.h" #include "empathy-contact-factory.h" #include "empathy-contact-manager.h" @@ -774,3 +776,9 @@ empathy_connection_request_channel (TpConnection *connection, weak_object); } +void +empathy_init (void) +{ + emp_cli_init (); +} + |