diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2016-10-19 05:09:43 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2016-10-19 05:09:43 +0200 |
commit | 694c7e47ece2cd322b0d2b57b88933a22d2734db (patch) | |
tree | c098b2104f1b76db60dd1f50de060c4439437fd8 /src/core/ViewCollection.vala | |
parent | 6824050190585821a13ce0f52d314986a25d6c2a (diff) | |
parent | b076314018e4b53d745823754a26eb6fb73a2801 (diff) |
Merge tag 'upstream/0.24.1'
Upstream version 0.24.1
Diffstat (limited to 'src/core/ViewCollection.vala')
-rw-r--r-- | src/core/ViewCollection.vala | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/ViewCollection.vala b/src/core/ViewCollection.vala index ce6fcaf..7e13fb0 100644 --- a/src/core/ViewCollection.vala +++ b/src/core/ViewCollection.vala @@ -646,7 +646,8 @@ public class ViewCollection : DataCollection { } public override void items_altered(Gee.Map<DataObject, Alteration> map) { - filter_altered_items(map.keys); + // Cast - our DataObjects are DataViews. + filter_altered_items((Gee.Collection<DataView>)map.keys); base.items_altered(map); } |