diff options
author | Xan Lopez <xan@igalia.com> | 2011-12-15 06:20:01 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2011-12-15 06:20:35 +0800 |
commit | c543977b4083498f1226376d3a826e146a13b298 (patch) | |
tree | 20bafa985a08e1326f12591ce3da53fb6a4394c1 /src/ephy-notebook.c | |
parent | 9891c072a2cd3bc99a788bcdc2f278ce47989786 (diff) | |
download | gsoc2013-epiphany-c543977b4083498f1226376d3a826e146a13b298.tar gsoc2013-epiphany-c543977b4083498f1226376d3a826e146a13b298.tar.gz gsoc2013-epiphany-c543977b4083498f1226376d3a826e146a13b298.tar.bz2 gsoc2013-epiphany-c543977b4083498f1226376d3a826e146a13b298.tar.lz gsoc2013-epiphany-c543977b4083498f1226376d3a826e146a13b298.tar.xz gsoc2013-epiphany-c543977b4083498f1226376d3a826e146a13b298.tar.zst gsoc2013-epiphany-c543977b4083498f1226376d3a826e146a13b298.zip |
ephy-notebook: reorder includes
Diffstat (limited to 'src/ephy-notebook.c')
-rw-r--r-- | src/ephy-notebook.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c index 41207a2b7..1431caefc 100644 --- a/src/ephy-notebook.c +++ b/src/ephy-notebook.c @@ -21,18 +21,18 @@ */ #include "config.h" - #include "ephy-notebook.h" -#include "ephy-prefs.h" -#include "ephy-settings.h" -#include "ephy-file-helpers.h" + +#include "ephy-debug.h" #include "ephy-dnd.h" -#include "ephy-embed.h" #include "ephy-embed-utils.h" -#include "ephy-window.h" -#include "ephy-shell.h" +#include "ephy-embed.h" +#include "ephy-file-helpers.h" #include "ephy-link.h" -#include "ephy-debug.h" +#include "ephy-prefs.h" +#include "ephy-settings.h" +#include "ephy-shell.h" +#include "ephy-window.h" #include <glib/gi18n.h> #include <gtk/gtk.h> |