aboutsummaryrefslogtreecommitdiffstats
path: root/embed
diff options
context:
space:
mode:
authorXan Lopez <xan@igalia.com>2012-07-31 21:03:45 +0800
committerXan Lopez <xan@igalia.com>2012-07-31 21:03:45 +0800
commitff525b9f0d82cda962ded2d77e1f6d9ba9fca2c3 (patch)
treecbe8fe058f59a95fa97cc24c23d5efa9e0efe1b5 /embed
parentc783fe5461c4ebaef6f1e672125c632c042826cd (diff)
downloadgsoc2013-epiphany-ff525b9f0d82cda962ded2d77e1f6d9ba9fca2c3.tar
gsoc2013-epiphany-ff525b9f0d82cda962ded2d77e1f6d9ba9fca2c3.tar.gz
gsoc2013-epiphany-ff525b9f0d82cda962ded2d77e1f6d9ba9fca2c3.tar.bz2
gsoc2013-epiphany-ff525b9f0d82cda962ded2d77e1f6d9ba9fca2c3.tar.lz
gsoc2013-epiphany-ff525b9f0d82cda962ded2d77e1f6d9ba9fca2c3.tar.xz
gsoc2013-epiphany-ff525b9f0d82cda962ded2d77e1f6d9ba9fca2c3.tar.zst
gsoc2013-epiphany-ff525b9f0d82cda962ded2d77e1f6d9ba9fca2c3.zip
ephy-embed-shell: add missing header
Dropping useless headers elsewhere uncovered a missing header (stdlib.h) here. Also sort headers while at it.
Diffstat (limited to 'embed')
-rw-r--r--embed/ephy-embed-shell.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/embed/ephy-embed-shell.c b/embed/ephy-embed-shell.c
index c359afac6..d494da3c1 100644
--- a/embed/ephy-embed-shell.c
+++ b/embed/ephy-embed-shell.c
@@ -20,23 +20,23 @@
*/
#include <config.h>
-
-#include <glib.h>
-
-#include <glib/gi18n.h>
-#include <glib/gstdio.h>
-#include <gtk/gtk.h>
+#include "ephy-embed-shell.h"
#include "ephy-adblock-manager.h"
#include "ephy-debug.h"
#include "ephy-download.h"
-#include "ephy-embed-shell.h"
#include "ephy-embed-single.h"
#include "ephy-embed-type-builtins.h"
#include "ephy-encodings.h"
#include "ephy-file-helpers.h"
#include "ephy-history-service.h"
#include "ephy-print-utils.h"
+#include <glib.h>
+
+#include <glib/gi18n.h>
+#include <glib/gstdio.h>
+#include <gtk/gtk.h>
+#include <stdlib.h>
#define PAGE_SETUP_FILENAME "page-setup-gtk.ini"
#define PRINT_SETTINGS_FILENAME "print-settings.ini"