diff options
author | Emanuele Aina <emanuele.aina@collabora.com> | 2013-04-01 17:04:08 +0200 |
---|---|---|
committer | Emanuele Aina <emanuele.aina@collabora.com> | 2013-04-01 23:40:42 +0200 |
commit | 0d137b74e57840bd85f090becd4144f62c89d6ab (patch) | |
tree | 24ebd2c6a04b9eaa791215e4a801a298e74abaa6 /src/empathy-debug-window.c | |
parent | 4d8ed19e779716a81fe7b37aa0f51a68057e0a2a (diff) | |
download | empathy-0d137b74e57840bd85f090becd4144f62c89d6ab.tar.gz |
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 'src/empathy-debug-window.c')
-rw-r--r-- | src/empathy-debug-window.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/empathy-debug-window.c b/src/empathy-debug-window.c index 546e17406..6cc60098f 100644 --- a/src/empathy-debug-window.c +++ b/src/empathy-debug-window.c @@ -20,18 +20,17 @@ */ #include "config.h" +#include "empathy-debug-window.h" #include <glib/gi18n.h> #include <libsoup/soup.h> -#define DEBUG_FLAG EMPATHY_DEBUG_OTHER -#include "empathy-debug.h" -#include "empathy-utils.h" - #include "empathy-geometry.h" #include "empathy-ui-utils.h" +#include "empathy-utils.h" -#include "empathy-debug-window.h" +#define DEBUG_FLAG EMPATHY_DEBUG_OTHER +#include "empathy-debug.h" G_DEFINE_TYPE (EmpathyDebugWindow, empathy_debug_window, GTK_TYPE_WINDOW) |