diff options
author | Xan Lopez <xan@igalia.com> | 2012-01-17 20:26:25 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-01-17 20:26:25 +0800 |
commit | 8116867c05267353d8f93b3e280be48b9288e80d (patch) | |
tree | c1faa561e2be3dd899bd15b9a6c9c083b42ef6bc /src | |
parent | fa5d7a87451834bf8f9253b1ebba08c5da8fe446 (diff) | |
download | gsoc2013-epiphany-8116867c05267353d8f93b3e280be48b9288e80d.tar.gz gsoc2013-epiphany-8116867c05267353d8f93b3e280be48b9288e80d.tar.zst gsoc2013-epiphany-8116867c05267353d8f93b3e280be48b9288e80d.zip |
ephy-find-toolbar: reorder includes
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-find-toolbar.c | 6 |
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)) |