aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXan Lopez <xan@igalia.com>2012-01-17 20:26:25 +0800
committerXan Lopez <xan@igalia.com>2012-01-17 20:26:25 +0800
commit8116867c05267353d8f93b3e280be48b9288e80d (patch)
treec1faa561e2be3dd899bd15b9a6c9c083b42ef6bc
parentfa5d7a87451834bf8f9253b1ebba08c5da8fe446 (diff)
downloadgsoc2013-epiphany-8116867c05267353d8f93b3e280be48b9288e80d.tar
gsoc2013-epiphany-8116867c05267353d8f93b3e280be48b9288e80d.tar.gz
gsoc2013-epiphany-8116867c05267353d8f93b3e280be48b9288e80d.tar.bz2
gsoc2013-epiphany-8116867c05267353d8f93b3e280be48b9288e80d.tar.lz
gsoc2013-epiphany-8116867c05267353d8f93b3e280be48b9288e80d.tar.xz
gsoc2013-epiphany-8116867c05267353d8f93b3e280be48b9288e80d.tar.zst
gsoc2013-epiphany-8116867c05267353d8f93b3e280be48b9288e80d.zip
ephy-find-toolbar: reorder includes
-rw-r--r--src/ephy-find-toolbar.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ephy-find-toolbar.c b/src/ephy-find-toolbar.c
index 7acb56569..9a6d7ab96 100644
--- a/src/ephy-find-toolbar.c
+++ b/src/ephy-find-toolbar.c
@@ -20,16 +20,16 @@
*/
#include "config.h"
-
-#include "ephy-embed-utils.h"
#include "ephy-find-toolbar.h"
+
#include "ephy-debug.h"
+#include "ephy-embed-utils.h"
-#include <webkit/webkit.h>
#include <gdk/gdkkeysyms.h>
#include <glib/gi18n.h>
#include <gtk/gtk.h>
#include <string.h>
+#include <webkit/webkit.h>
#define EPHY_FIND_TOOLBAR_GET_PRIVATE(object) (G_TYPE_INSTANCE_GET_PRIVATE ((object),EPHY_TYPE_FIND_TOOLBAR, EphyFindToolbarPrivate))