diff options
author | Xan Lopez <xlopez@igalia.com> | 2011-09-11 21:41:31 +0800 |
---|---|---|
committer | Xan Lopez <xlopez@igalia.com> | 2011-09-11 21:41:56 +0800 |
commit | 2d26c13ddb3f59d86b4c3a2f2d2e211a15194852 (patch) | |
tree | 67c62714378514d26ee1bae77723781b617f6052 /src/ephy-shell.c | |
parent | a00032078c5a42860196f0e5bc66a8f17111f9df (diff) | |
download | gsoc2013-epiphany-2d26c13ddb3f59d86b4c3a2f2d2e211a15194852.tar gsoc2013-epiphany-2d26c13ddb3f59d86b4c3a2f2d2e211a15194852.tar.gz gsoc2013-epiphany-2d26c13ddb3f59d86b4c3a2f2d2e211a15194852.tar.bz2 gsoc2013-epiphany-2d26c13ddb3f59d86b4c3a2f2d2e211a15194852.tar.lz gsoc2013-epiphany-2d26c13ddb3f59d86b4c3a2f2d2e211a15194852.tar.xz gsoc2013-epiphany-2d26c13ddb3f59d86b4c3a2f2d2e211a15194852.tar.zst gsoc2013-epiphany-2d26c13ddb3f59d86b4c3a2f2d2e211a15194852.zip |
ephy-shell: sort includes and remove duplicates
Diffstat (limited to 'src/ephy-shell.c')
-rw-r--r-- | src/ephy-shell.c | 55 |
1 files changed, 26 insertions, 29 deletions
diff --git a/src/ephy-shell.c b/src/ephy-shell.c index f5759d446..8196370bf 100644 --- a/src/ephy-shell.c +++ b/src/ephy-shell.c @@ -21,45 +21,42 @@ */ #include "config.h" - -#include <string.h> -#include <glib/gi18n.h> -#include <gtk/gtk.h> -#include <dirent.h> -#include <unistd.h> - #include "ephy-shell.h" -#include "ephy-type-builtins.h" + +#include "egg-toolbars-model.h" +#include "ephy-bookmarks-editor.h" +#include "ephy-bookmarks-import.h" +#include "ephy-bookmarks-ui.h" +#include "ephy-debug.h" #include "ephy-embed-container.h" #include "ephy-embed-single.h" #include "ephy-embed-utils.h" -#include "ephy-prefs.h" -#include "ephy-file-helpers.h" +#include "ephy-extensions-manager.h" #include "ephy-favicon-cache.h" -#include "ephy-web-view.h" -#include "ephy-embed-utils.h" -#include "ephy-window.h" -#include "ephy-bookmarks-ui.h" -#include "ephy-bookmarks-import.h" -#include "ephy-bookmarks-editor.h" +#include "ephy-file-helpers.h" +#include "ephy-gui.h" #include "ephy-history-window.h" -#include "pdm-dialog.h" -#include "prefs-dialog.h" -#include "ephy-debug.h" -#include "ephy-extensions-manager.h" -#include "ephy-session.h" #include "ephy-lockdown.h" -#include "egg-toolbars-model.h" -#include "ephy-toolbars-model.h" -#include "ephy-toolbar.h" -#include "ephy-settings.h" +#include "ephy-network-manager-defines.h" +#include "ephy-network-manager.h" #include "ephy-prefs.h" -#include "ephy-gui.h" +#include "ephy-profile-utils.h" +#include "ephy-session.h" +#include "ephy-settings.h" #include "ephy-stock-icons.h" +#include "ephy-toolbar.h" +#include "ephy-toolbars-model.h" +#include "ephy-type-builtins.h" #include "ephy-web-view.h" -#include "ephy-network-manager.h" -#include "ephy-network-manager-defines.h" -#include "ephy-profile-utils.h" +#include "ephy-window.h" +#include "pdm-dialog.h" +#include "prefs-dialog.h" + +#include <dirent.h> +#include <glib/gi18n.h> +#include <gtk/gtk.h> +#include <string.h> +#include <unistd.h> #define EPHY_SHELL_GET_PRIVATE(object)(G_TYPE_INSTANCE_GET_PRIVATE ((object), EPHY_TYPE_SHELL, EphyShellPrivate)) |