aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-completion-model.c
diff options
context:
space:
mode:
authorXan Lopez <xan@igalia.com>2012-02-08 20:52:18 +0800
committerXan Lopez <xan@igalia.com>2012-03-07 04:49:44 +0800
commit306fb5a64f9b347fde9cf99ee7a594f04e9d7601 (patch)
treebbcb0987ea02d9f45d93f7c870075e27b9b7b30e /src/ephy-completion-model.c
parentd29278efdc66cb974f7d52258c2c3469e02d7bd0 (diff)
downloadgsoc2013-epiphany-306fb5a64f9b347fde9cf99ee7a594f04e9d7601.tar
gsoc2013-epiphany-306fb5a64f9b347fde9cf99ee7a594f04e9d7601.tar.gz
gsoc2013-epiphany-306fb5a64f9b347fde9cf99ee7a594f04e9d7601.tar.bz2
gsoc2013-epiphany-306fb5a64f9b347fde9cf99ee7a594f04e9d7601.tar.lz
gsoc2013-epiphany-306fb5a64f9b347fde9cf99ee7a594f04e9d7601.tar.xz
gsoc2013-epiphany-306fb5a64f9b347fde9cf99ee7a594f04e9d7601.tar.zst
gsoc2013-epiphany-306fb5a64f9b347fde9cf99ee7a594f04e9d7601.zip
ephy-completion-model: reorder includes
Diffstat (limited to 'src/ephy-completion-model.c')
-rw-r--r--src/ephy-completion-model.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ephy-completion-model.c b/src/ephy-completion-model.c
index 921fa3757..ef671850f 100644
--- a/src/ephy-completion-model.c
+++ b/src/ephy-completion-model.c
@@ -19,14 +19,14 @@
*/
#include "config.h"
-
-#include <string.h>
-
#include "ephy-completion-model.h"
+
#include "ephy-favicon-cache.h"
+#include "ephy-history.h"
#include "ephy-node.h"
#include "ephy-shell.h"
-#include "ephy-history.h"
+
+#include <string.h>
static void ephy_completion_model_class_init (EphyCompletionModelClass *klass);
static void ephy_completion_model_init (EphyCompletionModel *model);