diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-12-12 23:49:38 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-12-12 23:49:38 +0800 |
commit | cbedf400e93dd3526607df4aedd3e623a54199d3 (patch) | |
tree | 0532271104d323cb02d8e069db9c612854f4342e /libempathy | |
parent | f3b9e7312962dae85b0476d7232db8a213bef856 (diff) | |
download | gsoc2013-empathy-cbedf400e93dd3526607df4aedd3e623a54199d3.tar gsoc2013-empathy-cbedf400e93dd3526607df4aedd3e623a54199d3.tar.gz gsoc2013-empathy-cbedf400e93dd3526607df4aedd3e623a54199d3.tar.bz2 gsoc2013-empathy-cbedf400e93dd3526607df4aedd3e623a54199d3.tar.lz gsoc2013-empathy-cbedf400e93dd3526607df4aedd3e623a54199d3.tar.xz gsoc2013-empathy-cbedf400e93dd3526607df4aedd3e623a54199d3.tar.zst gsoc2013-empathy-cbedf400e93dd3526607df4aedd3e623a54199d3.zip |
gtk_init and g_thread_init shouldn't be called by libraries. Let applications do it.
svn path=/trunk/; revision=1971
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-utils.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libempathy/empathy-utils.c b/libempathy/empathy-utils.c index 2e02fc6c4..c025f26da 100644 --- a/libempathy/empathy-utils.c +++ b/libempathy/empathy-utils.c @@ -51,10 +51,6 @@ empathy_init (void) if (initialized) return; - /* Setup glib. Threads are required for async GIO. */ - if (!g_thread_supported ()) { - g_thread_init (NULL); - } g_type_init (); /* Setup gettext */ |