aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-12-12 20:06:14 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-12-14 20:26:54 +0800
commit42286849ee43d2807f8d4faa5d747b144859e08a (patch)
treeb96d88d8c9f119253b68928bb998cc8f4681f8bc /src
parent66dbf2d87306d9ee4c5325c1c96628a70d8eac1a (diff)
downloadgsoc2013-empathy-42286849ee43d2807f8d4faa5d747b144859e08a.tar
gsoc2013-empathy-42286849ee43d2807f8d4faa5d747b144859e08a.tar.gz
gsoc2013-empathy-42286849ee43d2807f8d4faa5d747b144859e08a.tar.bz2
gsoc2013-empathy-42286849ee43d2807f8d4faa5d747b144859e08a.tar.lz
gsoc2013-empathy-42286849ee43d2807f8d4faa5d747b144859e08a.tar.xz
gsoc2013-empathy-42286849ee43d2807f8d4faa5d747b144859e08a.tar.zst
gsoc2013-empathy-42286849ee43d2807f8d4faa5d747b144859e08a.zip
main-window: stop instantiating the contact manager
We don't use it any more. https://bugzilla.gnome.org/show_bug.cgi?id=660547
Diffstat (limited to 'src')
-rw-r--r--src/empathy-main-window.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/empathy-main-window.c b/src/empathy-main-window.c
index 20bd60739..91dd6bdec 100644
--- a/src/empathy-main-window.c
+++ b/src/empathy-main-window.c
@@ -39,7 +39,6 @@
#include <libempathy/empathy-chatroom-manager.h>
#include <libempathy/empathy-chatroom.h>
#include <libempathy/empathy-contact-list.h>
-#include <libempathy/empathy-contact-manager.h>
#include <libempathy/empathy-gsettings.h>
#include <libempathy/empathy-individual-manager.h>
#include <libempathy/empathy-gsettings.h>
@@ -106,7 +105,6 @@ G_DEFINE_TYPE (EmpathyMainWindow, empathy_main_window, GTK_TYPE_WINDOW);
#define GET_PRIV(self) ((EmpathyMainWindowPriv *)((EmpathyMainWindow *) self)->priv)
struct _EmpathyMainWindowPriv {
- EmpathyContactList *contact_manager;
EmpathyIndividualStore *individual_store;
EmpathyIndividualView *individual_view;
TpAccountManager *account_manager;
@@ -1371,7 +1369,6 @@ empathy_main_window_finalize (GObject *window)
g_object_unref (priv->account_manager);
g_object_unref (priv->individual_store);
- g_object_unref (priv->contact_manager);
g_object_unref (priv->sound_mgr);
g_hash_table_unref (priv->errors);
g_hash_table_unref (priv->auths);
@@ -2459,8 +2456,6 @@ empathy_main_window_init (EmpathyMainWindow *window)
* so it's got a race condition between its signal handlers and its
* finalization. The class is planned to be removed, so we won't fix
* this before then. */
- priv->contact_manager = EMPATHY_CONTACT_LIST (
- empathy_contact_manager_dup_singleton ());
individual_manager = empathy_individual_manager_dup_singleton ();
priv->individual_store = EMPATHY_INDIVIDUAL_STORE (
empathy_individual_store_manager_new (individual_manager));