diff options
author | Xan Lopez <xan@igalia.com> | 2012-03-07 05:01:54 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-03-07 05:01:54 +0800 |
commit | b19b4ce1eca123804d8d87bd12e1ba98a5f09683 (patch) | |
tree | 16b2ab5744ea70709e06ca8d6ccbfafabbf1afa0 /src/bookmarks | |
parent | fc92077114eb2042e0b3c750a784c37d20502535 (diff) | |
download | gsoc2013-epiphany-b19b4ce1eca123804d8d87bd12e1ba98a5f09683.tar.gz gsoc2013-epiphany-b19b4ce1eca123804d8d87bd12e1ba98a5f09683.tar.zst gsoc2013-epiphany-b19b4ce1eca123804d8d87bd12e1ba98a5f09683.zip |
ephy-bookmarks: reorder includes
Diffstat (limited to 'src/bookmarks')
-rw-r--r-- | src/bookmarks/ephy-bookmarks.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/bookmarks/ephy-bookmarks.c b/src/bookmarks/ephy-bookmarks.c index 3c796b8d9..76e717d7f 100644 --- a/src/bookmarks/ephy-bookmarks.c +++ b/src/bookmarks/ephy-bookmarks.c @@ -20,26 +20,26 @@ */ #include "config.h" - #include "ephy-bookmarks.h" + +#include "ephy-bookmark-properties.h" +#include "ephy-bookmarks-export.h" +#include "ephy-bookmarks-import.h" #include "ephy-bookmarks-type-builtins.h" -#include "ephy-file-helpers.h" +#include "ephy-debug.h" #include "ephy-embed-shell.h" -#include "ephy-shell.h" +#include "ephy-file-helpers.h" #include "ephy-history.h" -#include "ephy-debug.h" -#include "ephy-tree-model-node.h" #include "ephy-node-common.h" -#include "ephy-bookmarks-export.h" -#include "ephy-bookmarks-import.h" -#include "ephy-bookmark-properties.h" #include "ephy-prefs.h" #include "ephy-settings.h" +#include "ephy-shell.h" #include "ephy-signal-accumulator.h" +#include "ephy-tree-model-node.h" -#include <string.h> #include <glib/gi18n.h> #include <gtk/gtk.h> +#include <string.h> #ifdef ENABLE_ZEROCONF #include <avahi-common/error.h> |