aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorClaudio Saavedra <csaavedra@igalia.com>2012-03-08 06:17:39 +0800
committerClaudio Saavedra <csaavedra@igalia.com>2012-03-08 06:17:39 +0800
commit51b900da955eeb432471be567367ebcb80537f22 (patch)
treecb172ba8f0d71bfeb7e58c1ab30404e68db99e28 /src
parent6ebe03244f6bcc983e4ad3d06ab0dd09634a5937 (diff)
downloadgsoc2013-epiphany-51b900da955eeb432471be567367ebcb80537f22.tar
gsoc2013-epiphany-51b900da955eeb432471be567367ebcb80537f22.tar.gz
gsoc2013-epiphany-51b900da955eeb432471be567367ebcb80537f22.tar.bz2
gsoc2013-epiphany-51b900da955eeb432471be567367ebcb80537f22.tar.lz
gsoc2013-epiphany-51b900da955eeb432471be567367ebcb80537f22.tar.xz
gsoc2013-epiphany-51b900da955eeb432471be567367ebcb80537f22.tar.zst
gsoc2013-epiphany-51b900da955eeb432471be567367ebcb80537f22.zip
ephy-history-window: filter hosts with time range as well
Diffstat (limited to 'src')
-rw-r--r--src/ephy-history-window.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ephy-history-window.c b/src/ephy-history-window.c
index f8369ba23..9b254855e 100644
--- a/src/ephy-history-window.c
+++ b/src/ephy-history-window.c
@@ -778,7 +778,7 @@ search_entry_search_cb (GtkWidget *entry, char *search_text, EphyHistoryWindow *
static void
time_combo_changed_cb (GtkWidget *combo, EphyHistoryWindow *editor)
{
- filter_now (editor, FALSE, TRUE);
+ filter_now (editor, TRUE, TRUE);
}
static GtkWidget *
@@ -1078,7 +1078,8 @@ filter_now (EphyHistoryWindow *editor,
if (hosts)
{
- ephy_history_service_get_hosts (editor->priv->history_service,
+ ephy_history_service_find_hosts (editor->priv->history_service,
+ from, to,
(EphyHistoryJobCallback) on_get_hosts_cb, editor);
}