diff options
author | Xan Lopez <xan@igalia.com> | 2012-08-29 22:18:40 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-08-29 22:18:40 +0800 |
commit | 33c6eb2bbc1e66092919ae253c120a7c6dce3204 (patch) | |
tree | 426e2d29543d0ff1fefec7c9eb4cdecb50d8327a | |
parent | db0ec5890ede6b6eefced0b181b3996077d76f3c (diff) | |
download | gsoc2013-epiphany-33c6eb2bbc1e66092919ae253c120a7c6dce3204.tar.gz gsoc2013-epiphany-33c6eb2bbc1e66092919ae253c120a7c6dce3204.tar.zst gsoc2013-epiphany-33c6eb2bbc1e66092919ae253c120a7c6dce3204.zip |
ephy-file-helpers: sort includes
-rw-r--r-- | lib/ephy-file-helpers.c | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/lib/ephy-file-helpers.c b/lib/ephy-file-helpers.c index 9ccdf017b..189396c3c 100644 --- a/lib/ephy-file-helpers.c +++ b/lib/ephy-file-helpers.c @@ -21,29 +21,25 @@ */ #include "config.h" - #include "ephy-file-helpers.h" -#include "ephy-prefs.h" #include "ephy-debug.h" +#include "ephy-prefs.h" #include "ephy-profile-utils.h" #include "ephy-settings.h" #include "ephy-string.h" +#include <gdk/gdk.h> +#include <gio/gdesktopappinfo.h> +#include <gio/gio.h> #include <glib.h> #include <glib/gi18n.h> -#include <gio/gio.h> -#include <gio/gdesktopappinfo.h> -#include <gdk/gdk.h> -#include <libxml/xmlreader.h> - -#include <gdk/gdk.h> #include <gtk/gtk.h> - -#include <string.h> +#include <libxml/xmlreader.h> #include <stdlib.h> -#include <unistd.h> +#include <string.h> #include <sys/stat.h> +#include <unistd.h> /** * SECTION:ephy-file-helpers |