diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-09-14 21:52:54 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-09-17 16:12:54 +0800 |
commit | f9a38137925ff6f712afe21961614a1efb3b35ea (patch) | |
tree | c351d06a4f6762fbf75580fc363961b2790fcee5 /tests | |
parent | 55a2318eeb584a744d478d8745ac9fc60c0d4787 (diff) | |
download | gsoc2013-empathy-f9a38137925ff6f712afe21961614a1efb3b35ea.tar gsoc2013-empathy-f9a38137925ff6f712afe21961614a1efb3b35ea.tar.gz gsoc2013-empathy-f9a38137925ff6f712afe21961614a1efb3b35ea.tar.bz2 gsoc2013-empathy-f9a38137925ff6f712afe21961614a1efb3b35ea.tar.lz gsoc2013-empathy-f9a38137925ff6f712afe21961614a1efb3b35ea.tar.xz gsoc2013-empathy-f9a38137925ff6f712afe21961614a1efb3b35ea.tar.zst gsoc2013-empathy-f9a38137925ff6f712afe21961614a1efb3b35ea.zip |
include telepathy-glib.h
tp-glib 1.0 will enforce to only include telepathy-glib.h so best doing it to
reduce the delta with the future stable branch.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/empathy-chatroom-manager-test.c | 3 | ||||
-rw-r--r-- | tests/empathy-parser-test.c | 2 | ||||
-rw-r--r-- | tests/test-helper.h | 2 |
3 files changed, 3 insertions, 4 deletions
diff --git a/tests/empathy-chatroom-manager-test.c b/tests/empathy-chatroom-manager-test.c index 3ba0239f1..7ecb82ac4 100644 --- a/tests/empathy-chatroom-manager-test.c +++ b/tests/empathy-chatroom-manager-test.c @@ -3,8 +3,7 @@ #include <string.h> #include <glib/gstdio.h> -#include <telepathy-glib/account-manager.h> -#include <telepathy-glib/util.h> +#include <telepathy-glib/telepathy-glib.h> #include <libempathy/empathy-chatroom-manager.h> diff --git a/tests/empathy-parser-test.c b/tests/empathy-parser-test.c index feef03b51..4ae6f775a 100644 --- a/tests/empathy-parser-test.c +++ b/tests/empathy-parser-test.c @@ -6,7 +6,7 @@ #include "test-helper.h" -#include <telepathy-glib/util.h> +#include <telepathy-glib/telepathy-glib.h> #define DEBUG_FLAG EMPATHY_DEBUG_TESTS #include <libempathy/empathy-debug.h> diff --git a/tests/test-helper.h b/tests/test-helper.h index 67e371edc..cacd18b55 100644 --- a/tests/test-helper.h +++ b/tests/test-helper.h @@ -20,7 +20,7 @@ #ifndef __TEST_HELPER_H__ #define __TEST_HELPER_H__ -#include <telepathy-glib/account.h> +#include <telepathy-glib/telepathy-glib.h> void test_init (int argc, char **argv); |