diff options
author | Claudio Saavedra <csaavedra@igalia.com> | 2012-01-11 01:13:28 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-03-07 04:49:44 +0800 |
commit | e27d2f3e59743071b2d5269b274d36557a786f2f (patch) | |
tree | 81f13ee415de96c75a160907fe709e3eb39ee31f /lib/history | |
parent | 29227ae52d3d3921ddbbf23e4ad0bc9bf294e793 (diff) | |
download | gsoc2013-epiphany-e27d2f3e59743071b2d5269b274d36557a786f2f.tar.gz gsoc2013-epiphany-e27d2f3e59743071b2d5269b274d36557a786f2f.tar.zst gsoc2013-epiphany-e27d2f3e59743071b2d5269b274d36557a786f2f.zip |
EphyHistoryQuery: copy the limit too
Diffstat (limited to 'lib/history')
-rw-r--r-- | lib/history/ephy-history-types.c | 1 |
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)); |