diff options
author | Xan Lopez <xan@igalia.com> | 2012-03-20 19:15:09 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-03-20 19:15:09 +0800 |
commit | f788322f9acdf3b490e3bba7aaf3c4c8d66f9ffb (patch) | |
tree | 0382bb1e4cab624b9e80403de0e0379a92f97f15 /src/ephy-completion-model.c | |
parent | faf0c7c89a02f38e2272048ae6aa3ba3e11e5f63 (diff) | |
download | gsoc2013-epiphany-f788322f9acdf3b490e3bba7aaf3c4c8d66f9ffb.tar gsoc2013-epiphany-f788322f9acdf3b490e3bba7aaf3c4c8d66f9ffb.tar.gz gsoc2013-epiphany-f788322f9acdf3b490e3bba7aaf3c4c8d66f9ffb.tar.bz2 gsoc2013-epiphany-f788322f9acdf3b490e3bba7aaf3c4c8d66f9ffb.tar.lz gsoc2013-epiphany-f788322f9acdf3b490e3bba7aaf3c4c8d66f9ffb.tar.xz gsoc2013-epiphany-f788322f9acdf3b490e3bba7aaf3c4c8d66f9ffb.tar.zst gsoc2013-epiphany-f788322f9acdf3b490e3bba7aaf3c4c8d66f9ffb.zip |
Remove EphyHistory from the repository. It's unused now.
Diffstat (limited to 'src/ephy-completion-model.c')
-rw-r--r-- | src/ephy-completion-model.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/ephy-completion-model.c b/src/ephy-completion-model.c index 9b6507e1a..bea7776f0 100644 --- a/src/ephy-completion-model.c +++ b/src/ephy-completion-model.c @@ -23,7 +23,6 @@ #include "ephy-embed-prefs.h" #include "ephy-embed-shell.h" -#include "ephy-history.h" #include "ephy-history-service.h" #include "ephy-shell.h" @@ -35,7 +34,6 @@ G_DEFINE_TYPE (EphyCompletionModel, ephy_completion_model, GTK_TYPE_LIST_STORE) struct _EphyCompletionModelPrivate { EphyHistoryService *history_service; - EphyHistory *legacy_history_service; EphyNode *bookmarks; GSList *search_terms; @@ -97,7 +95,6 @@ ephy_completion_model_init (EphyCompletionModel *model) model->priv = priv = EPHY_COMPLETION_MODEL_GET_PRIVATE (model); priv->history_service = EPHY_HISTORY_SERVICE (ephy_embed_shell_get_global_history_service (embed_shell)); - priv->legacy_history_service = EPHY_HISTORY (ephy_embed_shell_get_global_history (embed_shell)); bookmarks_service = ephy_shell_get_bookmarks (ephy_shell); priv->bookmarks = ephy_bookmarks_get_bookmarks (bookmarks_service); |