diff options
author | Xan Lopez <xan@igalia.com> | 2011-12-20 22:39:58 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2011-12-20 23:31:48 +0800 |
commit | 23b15c86cf72c352145033cbbca6110ea8d4d6b9 (patch) | |
tree | 81d54f00035e280b7f21fb95d3cc7c435e9f35fc /embed | |
parent | 8b352f8b83a264c60f810a268c92dd4bf687f85e (diff) | |
download | gsoc2013-epiphany-23b15c86cf72c352145033cbbca6110ea8d4d6b9.tar gsoc2013-epiphany-23b15c86cf72c352145033cbbca6110ea8d4d6b9.tar.gz gsoc2013-epiphany-23b15c86cf72c352145033cbbca6110ea8d4d6b9.tar.bz2 gsoc2013-epiphany-23b15c86cf72c352145033cbbca6110ea8d4d6b9.tar.lz gsoc2013-epiphany-23b15c86cf72c352145033cbbca6110ea8d4d6b9.tar.xz gsoc2013-epiphany-23b15c86cf72c352145033cbbca6110ea8d4d6b9.tar.zst gsoc2013-epiphany-23b15c86cf72c352145033cbbca6110ea8d4d6b9.zip |
ephy-embed-prefs: reorder includes
Diffstat (limited to 'embed')
-rw-r--r-- | embed/ephy-embed-prefs.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/embed/ephy-embed-prefs.c b/embed/ephy-embed-prefs.c index c1bbc23d4..7281e982f 100644 --- a/embed/ephy-embed-prefs.c +++ b/embed/ephy-embed-prefs.c @@ -19,11 +19,8 @@ */ #include <config.h> - -#include <glib.h> -#include <webkit/webkit.h> - #include "ephy-embed-prefs.h" + #include "ephy-embed-shell.h" #include "ephy-embed-utils.h" #include "ephy-file-helpers.h" @@ -31,6 +28,9 @@ #include "ephy-prefs.h" #include "ephy-settings.h" +#include <glib.h> +#include <webkit/webkit.h> + typedef struct { char *schema; |