diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2007-11-11 22:42:34 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2007-11-11 22:42:34 +0800 |
commit | bb465d15f0c6c963556801cca5164f6d9071437b (patch) | |
tree | 32af73a3583508290edaf96b225bb5bfe4f623b2 /libempathy-gtk | |
parent | a57649e2d7991866a68aea8cb36bf91638df0a21 (diff) | |
download | gsoc2013-empathy-bb465d15f0c6c963556801cca5164f6d9071437b.tar gsoc2013-empathy-bb465d15f0c6c963556801cca5164f6d9071437b.tar.gz gsoc2013-empathy-bb465d15f0c6c963556801cca5164f6d9071437b.tar.bz2 gsoc2013-empathy-bb465d15f0c6c963556801cca5164f6d9071437b.tar.lz gsoc2013-empathy-bb465d15f0c6c963556801cca5164f6d9071437b.tar.xz gsoc2013-empathy-bb465d15f0c6c963556801cca5164f6d9071437b.tar.zst gsoc2013-empathy-bb465d15f0c6c963556801cca5164f6d9071437b.zip |
Move chats to its own process.
2007-11-11 Xavier Claessens <xclaesse@gmail.com>
* libempathy-gtk/empathy-chat.c:
* src/empathy-call-chandler.c:
* src/org.gnome.Empathy.Chat.service.in:
* src/empathy-chat-chandler.c:
* src/empathy.c:
* src/Makefile.am: Move chats to its own process.
svn path=/trunk/; revision=429
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-chat.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-chat.c b/libempathy-gtk/empathy-chat.c index 944bc10b5..edff73a3e 100644 --- a/libempathy-gtk/empathy-chat.c +++ b/libempathy-gtk/empathy-chat.c @@ -63,7 +63,6 @@ #define COMPOSING_STOP_TIMEOUT 5 struct _EmpathyChatPriv { - EmpathyContactManager *manager; EmpathyLogManager *log_manager; EmpathyTpChat *tp_chat; EmpathyChatWindow *window; @@ -234,7 +233,6 @@ empathy_chat_init (EmpathyChat *chat) priv = GET_PRIV (chat); - priv->manager = empathy_contact_manager_new (); priv->log_manager = empathy_log_manager_new (); priv->default_window_height = -1; priv->vscroll_visible = FALSE; @@ -299,7 +297,6 @@ chat_finalize (GObject *object) chat_composing_remove_timeout (chat); g_object_unref (chat->account); - g_object_unref (priv->manager); g_object_unref (priv->log_manager); if (priv->tp_chat) { |