diff options
author | Pierre-Luc Beaudoin <pierre-luc@pierlux.com> | 2009-05-11 09:09:40 +0800 |
---|---|---|
committer | Pierre-Luc Beaudoin <pierre-luc@pierlux.com> | 2009-05-28 00:52:04 +0800 |
commit | 30165e135359e217e7a9581277f8bf9b7b5c7459 (patch) | |
tree | 015c8956ea3b4a20a48b5e7187e1ad3e51c0d680 /src/empathy.c | |
parent | c43cfe015de9771fb20c718039f5ea09e56ae1c7 (diff) | |
download | gsoc2013-empathy-30165e135359e217e7a9581277f8bf9b7b5c7459.tar gsoc2013-empathy-30165e135359e217e7a9581277f8bf9b7b5c7459.tar.gz gsoc2013-empathy-30165e135359e217e7a9581277f8bf9b7b5c7459.tar.bz2 gsoc2013-empathy-30165e135359e217e7a9581277f8bf9b7b5c7459.tar.lz gsoc2013-empathy-30165e135359e217e7a9581277f8bf9b7b5c7459.tar.xz gsoc2013-empathy-30165e135359e217e7a9581277f8bf9b7b5c7459.tar.zst gsoc2013-empathy-30165e135359e217e7a9581277f8bf9b7b5c7459.zip |
Add a Contact Map window
Diffstat (limited to 'src/empathy.c')
-rw-r--r-- | src/empathy.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/empathy.c b/src/empathy.c index fe122e01f..b66520ffa 100644 --- a/src/empathy.c +++ b/src/empathy.c @@ -31,6 +31,10 @@ #include <gtk/gtk.h> #include <gdk/gdkx.h> +#if HAVE_LIBCHAMPLAIN +#include <clutter-gtk/gtk-clutter-embed.h> +#endif + #include <libebook/e-book.h> #include <libnotify/notify.h> @@ -466,6 +470,10 @@ main (int argc, char *argv[]) gst_init (&argc, &argv); +#if HAVE_LIBCHAMPLAIN + gtk_clutter_init(&argc, &argv); +#endif + gtk_window_set_default_icon_name ("empathy"); textdomain (GETTEXT_PACKAGE); |