diff options
author | Xan Lopez <xan@igalia.com> | 2012-03-07 04:46:08 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-03-07 04:49:47 +0800 |
commit | 9477deeaaaee87866fd5f381ca443b015f8f051f (patch) | |
tree | 70b84bad5b0073fec305f34085b27aa98f25179d | |
parent | 7c981b48b6e357d4dcf68cbe3eafec90d92ad1b0 (diff) | |
download | gsoc2013-epiphany-9477deeaaaee87866fd5f381ca443b015f8f051f.tar.gz gsoc2013-epiphany-9477deeaaaee87866fd5f381ca443b015f8f051f.tar.zst gsoc2013-epiphany-9477deeaaaee87866fd5f381ca443b015f8f051f.zip |
ephy-history-window: sort headers, remove duplicates
-rw-r--r-- | src/ephy-history-window.c | 37 |
1 files changed, 18 insertions, 19 deletions
diff --git a/src/ephy-history-window.c b/src/ephy-history-window.c index c9d4ba96b..18f8e6d79 100644 --- a/src/ephy-history-window.c +++ b/src/ephy-history-window.c @@ -21,33 +21,32 @@ */ #include "config.h" - -#include <gtk/gtk.h> -#include <glib/gi18n.h> -#include <string.h> -#include <time.h> - -#include "ephy-window.h" #include "ephy-history-window.h" -#include "ephy-urls-view.h" -#include "ephy-urls-store.h" -#include "ephy-hosts-view.h" -#include "ephy-hosts-store.h" -#include "ephy-shell.h" + +#include "ephy-bookmarks-ui.h" +#include "ephy-debug.h" #include "ephy-dnd.h" -#include "ephy-state.h" -#include "window-commands.h" +#include "ephy-favicon-cache.h" #include "ephy-file-helpers.h" -#include "ephy-debug.h" #include "ephy-gui.h" +#include "ephy-hosts-store.h" +#include "ephy-hosts-view.h" +#include "ephy-prefs.h" #include "ephy-search-entry.h" #include "ephy-session.h" -#include "ephy-favicon-cache.h" -#include "ephy-bookmarks-ui.h" -#include "ephy-prefs.h" #include "ephy-settings.h" -#include "ephy-gui.h" +#include "ephy-shell.h" +#include "ephy-state.h" #include "ephy-time-helpers.h" +#include "ephy-urls-store.h" +#include "ephy-urls-view.h" +#include "ephy-window.h" +#include "window-commands.h" + +#include <gtk/gtk.h> +#include <glib/gi18n.h> +#include <string.h> +#include <time.h> static const GtkTargetEntry page_drag_types [] = { |