aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorXan Lopez <xan@igalia.com>2012-03-07 05:01:54 +0800
committerXan Lopez <xan@igalia.com>2012-03-07 05:01:54 +0800
commitb19b4ce1eca123804d8d87bd12e1ba98a5f09683 (patch)
tree16b2ab5744ea70709e06ca8d6ccbfafabbf1afa0 /src
parentfc92077114eb2042e0b3c750a784c37d20502535 (diff)
downloadgsoc2013-epiphany-b19b4ce1eca123804d8d87bd12e1ba98a5f09683.tar
gsoc2013-epiphany-b19b4ce1eca123804d8d87bd12e1ba98a5f09683.tar.gz
gsoc2013-epiphany-b19b4ce1eca123804d8d87bd12e1ba98a5f09683.tar.bz2
gsoc2013-epiphany-b19b4ce1eca123804d8d87bd12e1ba98a5f09683.tar.lz
gsoc2013-epiphany-b19b4ce1eca123804d8d87bd12e1ba98a5f09683.tar.xz
gsoc2013-epiphany-b19b4ce1eca123804d8d87bd12e1ba98a5f09683.tar.zst
gsoc2013-epiphany-b19b4ce1eca123804d8d87bd12e1ba98a5f09683.zip
ephy-bookmarks: reorder includes
Diffstat (limited to 'src')
-rw-r--r--src/bookmarks/ephy-bookmarks.c18
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>