diff options
author | Xan Lopez <xan@gnome.org> | 2009-08-09 03:43:46 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2009-08-09 03:43:46 +0800 |
commit | 0c5cf6617f4d5945eb1eecce87ba4f164e4c416c (patch) | |
tree | 0f8f4267e1f2552be5a63fad45c36ae0133eea56 /embed | |
parent | be0a6c25239a4dd25495b50b4bed22bcbcc00440 (diff) | |
download | gsoc2013-epiphany-0c5cf6617f4d5945eb1eecce87ba4f164e4c416c.tar gsoc2013-epiphany-0c5cf6617f4d5945eb1eecce87ba4f164e4c416c.tar.gz gsoc2013-epiphany-0c5cf6617f4d5945eb1eecce87ba4f164e4c416c.tar.bz2 gsoc2013-epiphany-0c5cf6617f4d5945eb1eecce87ba4f164e4c416c.tar.lz gsoc2013-epiphany-0c5cf6617f4d5945eb1eecce87ba4f164e4c416c.tar.xz gsoc2013-epiphany-0c5cf6617f4d5945eb1eecce87ba4f164e4c416c.tar.zst gsoc2013-epiphany-0c5cf6617f4d5945eb1eecce87ba4f164e4c416c.zip |
ephy-embed.c: sort headers
Diffstat (limited to 'embed')
-rw-r--r-- | embed/ephy-embed.c | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c index ce1fb83cc..5591c9410 100644 --- a/embed/ephy-embed.c +++ b/embed/ephy-embed.c @@ -29,26 +29,25 @@ #include "eel-gconf-extensions.h" #include "ephy-command-manager.h" #include "ephy-debug.h" -#include "ephy-file-chooser.h" -#include "ephy-file-helpers.h" -#include "ephy-history.h" +#include "ephy-embed.h" +#include "ephy-embed-event.h" #include "ephy-embed-shell.h" #include "ephy-embed-single.h" #include "ephy-embed-persist.h" -#include "ephy-stock-icons.h" -#include "ephy-string.h" -#include "ephy-embed-event.h" +#include "ephy-embed-prefs.h" #include "ephy-embed-utils.h" +#include "ephy-file-chooser.h" +#include "ephy-file-helpers.h" +#include "ephy-history.h" #include "ephy-prefs.h" +#include "ephy-stock-icons.h" +#include "ephy-string.h" #include "ephy-web-view.h" -#include <webkit/webkit.h> #include <errno.h> -#include <string.h> #include <glib/gi18n.h> - -#include "ephy-embed-prefs.h" -#include "ephy-embed.h" +#include <string.h> +#include <webkit/webkit.h> static void ephy_embed_class_init (EphyEmbedClass *klass); static void ephy_embed_init (EphyEmbed *gs); |