aboutsummaryrefslogtreecommitdiffstats
path: root/lib/history/ephy-history-types.c
diff options
context:
space:
mode:
authorClaudio Saavedra <csaavedra@igalia.com>2012-01-11 01:17:51 +0800
committerXan Lopez <xan@igalia.com>2012-03-07 04:49:44 +0800
commit52a0d24d40b26f4cae80f09bca19ea40c429cf84 (patch)
treec94ff77e566169c472752013f801a96ab16bf79b /lib/history/ephy-history-types.c
parent6267e6e241400daf0d986ea2e57d673beac06208 (diff)
downloadgsoc2013-epiphany-52a0d24d40b26f4cae80f09bca19ea40c429cf84.tar
gsoc2013-epiphany-52a0d24d40b26f4cae80f09bca19ea40c429cf84.tar.gz
gsoc2013-epiphany-52a0d24d40b26f4cae80f09bca19ea40c429cf84.tar.bz2
gsoc2013-epiphany-52a0d24d40b26f4cae80f09bca19ea40c429cf84.tar.lz
gsoc2013-epiphany-52a0d24d40b26f4cae80f09bca19ea40c429cf84.tar.xz
gsoc2013-epiphany-52a0d24d40b26f4cae80f09bca19ea40c429cf84.tar.zst
gsoc2013-epiphany-52a0d24d40b26f4cae80f09bca19ea40c429cf84.zip
EphyHistoryQuery: add a EphyHistorySortType parameter to the query
Diffstat (limited to 'lib/history/ephy-history-types.c')
-rw-r--r--lib/history/ephy-history-types.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/history/ephy-history-types.c b/lib/history/ephy-history-types.c
index ad91e409b..bb8321653 100644
--- a/lib/history/ephy-history-types.c
+++ b/lib/history/ephy-history-types.c
@@ -209,6 +209,7 @@ ephy_history_query_copy (EphyHistoryQuery *query)
copy->from = query->from;
copy->to = query->to;
copy->limit = query->limit;
+ copy->sort_type = query->sort_type;
for (iter = query->substring_list; iter != NULL; iter = iter->next) {
copy->substring_list = g_list_prepend (copy->substring_list, g_strdup (iter->data));