aboutsummaryrefslogtreecommitdiffstats
path: root/lib/history/ephy-history-types.c
diff options
context:
space:
mode:
authorClaudio Saavedra <csaavedra@igalia.com>2012-01-11 01:13:28 +0800
committerXan Lopez <xan@igalia.com>2012-03-07 04:49:44 +0800
commite27d2f3e59743071b2d5269b274d36557a786f2f (patch)
tree81f13ee415de96c75a160907fe709e3eb39ee31f /lib/history/ephy-history-types.c
parent29227ae52d3d3921ddbbf23e4ad0bc9bf294e793 (diff)
downloadgsoc2013-epiphany-e27d2f3e59743071b2d5269b274d36557a786f2f.tar
gsoc2013-epiphany-e27d2f3e59743071b2d5269b274d36557a786f2f.tar.gz
gsoc2013-epiphany-e27d2f3e59743071b2d5269b274d36557a786f2f.tar.bz2
gsoc2013-epiphany-e27d2f3e59743071b2d5269b274d36557a786f2f.tar.lz
gsoc2013-epiphany-e27d2f3e59743071b2d5269b274d36557a786f2f.tar.xz
gsoc2013-epiphany-e27d2f3e59743071b2d5269b274d36557a786f2f.tar.zst
gsoc2013-epiphany-e27d2f3e59743071b2d5269b274d36557a786f2f.zip
EphyHistoryQuery: copy the limit too
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 1a8fc4380..ad91e409b 100644
--- a/lib/history/ephy-history-types.c
+++ b/lib/history/ephy-history-types.c
@@ -208,6 +208,7 @@ ephy_history_query_copy (EphyHistoryQuery *query)
EphyHistoryQuery *copy = ephy_history_query_new ();
copy->from = query->from;
copy->to = query->to;
+ copy->limit = query->limit;
for (iter = query->substring_list; iter != NULL; iter = iter->next) {
copy->substring_list = g_list_prepend (copy->substring_list, g_strdup (iter->data));