diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2009-01-16 17:12:23 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2009-01-16 17:12:23 +0800 |
commit | 8c64c693c7c50c546c6fceb538904a774f0a53da (patch) | |
tree | b6011ea1ff7b24e820630aae896ef9fca38f6238 /libempathy/empathy-utils.c | |
parent | b9addf3d49af524515c1ae9cc8267f1df6997fca (diff) | |
download | gsoc2013-empathy-8c64c693c7c50c546c6fceb538904a774f0a53da.tar gsoc2013-empathy-8c64c693c7c50c546c6fceb538904a774f0a53da.tar.gz gsoc2013-empathy-8c64c693c7c50c546c6fceb538904a774f0a53da.tar.bz2 gsoc2013-empathy-8c64c693c7c50c546c6fceb538904a774f0a53da.tar.lz gsoc2013-empathy-8c64c693c7c50c546c6fceb538904a774f0a53da.tar.xz gsoc2013-empathy-8c64c693c7c50c546c6fceb538904a774f0a53da.tar.zst gsoc2013-empathy-8c64c693c7c50c546c6fceb538904a774f0a53da.zip |
Fix building, there were a missing _new ->_dup_singleton.
svn path=/trunk/; revision=2235
Diffstat (limited to 'libempathy/empathy-utils.c')
-rw-r--r-- | libempathy/empathy-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-utils.c b/libempathy/empathy-utils.c index 99d89e0eb..e4ada9f80 100644 --- a/libempathy/empathy-utils.c +++ b/libempathy/empathy-utils.c @@ -414,7 +414,7 @@ empathy_channel_get_account (TpChannel *channel) MissionControl *mc; g_object_get (channel, "connection", &connection, NULL); - mc = empathy_mission_control_new (); + mc = empathy_mission_control_dup_singleton (); account = mission_control_get_account_for_tpconnection (mc, connection, NULL); g_object_unref (connection); g_object_unref (mc); |