aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorXan Lopez <xan@igalia.com>2012-03-31 03:18:41 +0800
committerXan Lopez <xan@igalia.com>2012-03-31 03:18:41 +0800
commite75c67eef25fe0137216cbb3b2b1e29f01b3c215 (patch)
tree506f4ca2c52475cefbb8d3b54f3bbfc31f12827d /src
parentc101a07424b5ab073ab44e325a8af7cbbb586e71 (diff)
downloadgsoc2013-epiphany-e75c67eef25fe0137216cbb3b2b1e29f01b3c215.tar
gsoc2013-epiphany-e75c67eef25fe0137216cbb3b2b1e29f01b3c215.tar.gz
gsoc2013-epiphany-e75c67eef25fe0137216cbb3b2b1e29f01b3c215.tar.bz2
gsoc2013-epiphany-e75c67eef25fe0137216cbb3b2b1e29f01b3c215.tar.lz
gsoc2013-epiphany-e75c67eef25fe0137216cbb3b2b1e29f01b3c215.tar.xz
gsoc2013-epiphany-e75c67eef25fe0137216cbb3b2b1e29f01b3c215.tar.zst
gsoc2013-epiphany-e75c67eef25fe0137216cbb3b2b1e29f01b3c215.zip
ephy-encoding-dialog: reorder includes
Diffstat (limited to 'src')
-rw-r--r--src/ephy-encoding-dialog.c17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/ephy-encoding-dialog.c b/src/ephy-encoding-dialog.c
index 824ae5d0f..0579f4505 100644
--- a/src/ephy-encoding-dialog.c
+++ b/src/ephy-encoding-dialog.c
@@ -20,23 +20,22 @@
*/
#include "config.h"
-
#include "ephy-encoding-dialog.h"
-#include "ephy-encodings.h"
-#include "ephy-embed.h"
+
+#include "ephy-debug.h"
#include "ephy-embed-container.h"
#include "ephy-embed-shell.h"
#include "ephy-embed-utils.h"
+#include "ephy-embed.h"
+#include "ephy-encodings.h"
#include "ephy-file-helpers.h"
-#include "ephy-shell.h"
-#include "ephy-node.h"
-#include "ephy-node-view.h"
-#include "ephy-debug.h"
#include "ephy-gui.h"
+#include "ephy-node-view.h"
+#include "ephy-node.h"
+#include "ephy-shell.h"
-#include <gtk/gtk.h>
#include <glib/gi18n.h>
-#include <string.h>
+#include <gtk/gtk.h>
#include <webkit/webkit.h>
#define EPHY_ENCODING_DIALOG_GET_PRIVATE(object)(G_TYPE_INSTANCE_GET_PRIVATE ((object), EPHY_TYPE_ENCODING_DIALOG, EphyEncodingDialogPrivate))