aboutsummaryrefslogtreecommitdiffstats
path: root/tests/interactive
diff options
context:
space:
mode:
authorEmanuele Aina <emanuele.aina@collabora.com>2013-04-01 23:04:08 +0800
committerEmanuele Aina <emanuele.aina@collabora.com>2013-04-02 05:40:42 +0800
commit0d137b74e57840bd85f090becd4144f62c89d6ab (patch)
tree24ebd2c6a04b9eaa791215e4a801a298e74abaa6 /tests/interactive
parent4d8ed19e779716a81fe7b37aa0f51a68057e0a2a (diff)
downloadgsoc2013-empathy-0d137b74e57840bd85f090becd4144f62c89d6ab.tar
gsoc2013-empathy-0d137b74e57840bd85f090becd4144f62c89d6ab.tar.gz
gsoc2013-empathy-0d137b74e57840bd85f090becd4144f62c89d6ab.tar.bz2
gsoc2013-empathy-0d137b74e57840bd85f090becd4144f62c89d6ab.tar.lz
gsoc2013-empathy-0d137b74e57840bd85f090becd4144f62c89d6ab.tar.xz
gsoc2013-empathy-0d137b74e57840bd85f090becd4144f62c89d6ab.tar.zst
gsoc2013-empathy-0d137b74e57840bd85f090becd4144f62c89d6ab.zip
Reorder header inclusions accordingly to the Telepathy coding style
Sort by: • "config.h" • API declarations, if any • public libraries • internal headers, alphabetically sorted (mostly) http://telepathy.freedesktop.org/wiki/Style#A.23includes https://bugzilla.gnome.org/show_bug.cgi?id=697076
Diffstat (limited to 'tests/interactive')
-rw-r--r--tests/interactive/empathy-logs.c5
-rw-r--r--tests/interactive/test-empathy-account-chooser.c4
-rw-r--r--tests/interactive/test-empathy-contact-blocking-dialog.c5
-rw-r--r--tests/interactive/test-empathy-dual-roster-view.c3
-rw-r--r--tests/interactive/test-empathy-presence-chooser.c5
-rw-r--r--tests/interactive/test-empathy-protocol-chooser.c4
-rw-r--r--tests/interactive/test-empathy-roster-model-aggregator.c5
-rw-r--r--tests/interactive/test-empathy-roster-view.c3
-rw-r--r--tests/interactive/test-empathy-status-preset-dialog.c5
9 files changed, 17 insertions, 22 deletions
diff --git a/tests/interactive/empathy-logs.c b/tests/interactive/empathy-logs.c
index 4a440f9ed..613bf7516 100644
--- a/tests/interactive/empathy-logs.c
+++ b/tests/interactive/empathy-logs.c
@@ -19,15 +19,16 @@
* Authors: Xavier Claessens <xclaesse@gmail.com>
*/
-#include <config.h>
+#include "config.h"
+
#include <stdlib.h>
#include <glib.h>
#include <gtk/gtk.h>
#include "empathy-debug.h"
-#include "empathy-utils.h"
#include "empathy-log-window.h"
#include "empathy-ui-utils.h"
+#include "empathy-utils.h"
static void
destroy_cb (GtkWidget *dialog,
diff --git a/tests/interactive/test-empathy-account-chooser.c b/tests/interactive/test-empathy-account-chooser.c
index 8a4d08fcf..159f8fcfa 100644
--- a/tests/interactive/test-empathy-account-chooser.c
+++ b/tests/interactive/test-empathy-account-chooser.c
@@ -1,9 +1,9 @@
-#include <config.h>
+#include "config.h"
#include <gtk/gtk.h>
-#include "empathy-ui-utils.h"
#include "empathy-account-chooser.h"
+#include "empathy-ui-utils.h"
static void
filter_func (TpAccount *account,
diff --git a/tests/interactive/test-empathy-contact-blocking-dialog.c b/tests/interactive/test-empathy-contact-blocking-dialog.c
index d4a76933d..185f4e954 100644
--- a/tests/interactive/test-empathy-contact-blocking-dialog.c
+++ b/tests/interactive/test-empathy-contact-blocking-dialog.c
@@ -19,14 +19,13 @@
* Authors: Danielle Madeley <danielle.madeley@collabora.co.uk>
*/
-#include <config.h>
+#include "config.h"
#include <gtk/gtk.h>
#include "empathy-client-factory.h"
-
-#include "empathy-ui-utils.h"
#include "empathy-contact-blocking-dialog.h"
+#include "empathy-ui-utils.h"
static void
am_prepare_cb (GObject *source,
diff --git a/tests/interactive/test-empathy-dual-roster-view.c b/tests/interactive/test-empathy-dual-roster-view.c
index d7c54a647..74bb59f17 100644
--- a/tests/interactive/test-empathy-dual-roster-view.c
+++ b/tests/interactive/test-empathy-dual-roster-view.c
@@ -1,8 +1,7 @@
-#include <config.h>
+#include "config.h"
#include "empathy-roster-model.h"
#include "empathy-roster-model-manager.h"
-
#include "empathy-roster-view.h"
#include "empathy-ui-utils.h"
diff --git a/tests/interactive/test-empathy-presence-chooser.c b/tests/interactive/test-empathy-presence-chooser.c
index 5710fb146..208c9a12e 100644
--- a/tests/interactive/test-empathy-presence-chooser.c
+++ b/tests/interactive/test-empathy-presence-chooser.c
@@ -20,14 +20,13 @@
* Authors: Davyd Madeley <davyd.madeley@collabora.co.uk>
*/
-#include <config.h>
+#include "config.h"
#include <gtk/gtk.h>
+#include "empathy-presence-chooser.h"
#include "empathy-status-presets.h"
-
#include "empathy-ui-utils.h"
-#include "empathy-presence-chooser.h"
int
main (int argc, char **argv)
diff --git a/tests/interactive/test-empathy-protocol-chooser.c b/tests/interactive/test-empathy-protocol-chooser.c
index f91cb1203..ca548a85b 100644
--- a/tests/interactive/test-empathy-protocol-chooser.c
+++ b/tests/interactive/test-empathy-protocol-chooser.c
@@ -1,9 +1,9 @@
-#include <config.h>
+#include "config.h"
#include <gtk/gtk.h>
-#include "empathy-ui-utils.h"
#include "empathy-protocol-chooser.h"
+#include "empathy-ui-utils.h"
int
main (int argc,
diff --git a/tests/interactive/test-empathy-roster-model-aggregator.c b/tests/interactive/test-empathy-roster-model-aggregator.c
index bb3195022..478b4e6cc 100644
--- a/tests/interactive/test-empathy-roster-model-aggregator.c
+++ b/tests/interactive/test-empathy-roster-model-aggregator.c
@@ -1,8 +1,7 @@
-#include <config.h>
+#include "config.h"
-#include "empathy-roster-model.h"
#include "empathy-roster-model-aggregator.h"
-
+#include "empathy-roster-model.h"
#include "empathy-roster-view.h"
#include "empathy-ui-utils.h"
diff --git a/tests/interactive/test-empathy-roster-view.c b/tests/interactive/test-empathy-roster-view.c
index ff5de0fdc..f814d9658 100644
--- a/tests/interactive/test-empathy-roster-view.c
+++ b/tests/interactive/test-empathy-roster-view.c
@@ -1,8 +1,7 @@
-#include <config.h>
+#include "config.h"
#include "empathy-roster-model.h"
#include "empathy-roster-model-manager.h"
-
#include "empathy-roster-view.h"
#include "empathy-ui-utils.h"
diff --git a/tests/interactive/test-empathy-status-preset-dialog.c b/tests/interactive/test-empathy-status-preset-dialog.c
index db9cd361d..2494d78b7 100644
--- a/tests/interactive/test-empathy-status-preset-dialog.c
+++ b/tests/interactive/test-empathy-status-preset-dialog.c
@@ -22,14 +22,13 @@
* Will Thompson <will.thompson@collabora.co.uk>
*/
-#include <config.h>
+#include "config.h"
#include <gtk/gtk.h>
+#include "empathy-status-preset-dialog.h"
#include "empathy-status-presets.h"
-
#include "empathy-ui-utils.h"
-#include "empathy-status-preset-dialog.h"
int
main (int argc, char **argv)