summaryrefslogtreecommitdiff
path: root/src/core/ViewCollection.vala
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2016-10-19 05:08:19 +0200
committerJörg Frings-Fürst <debian@jff-webhosting.net>2016-10-19 05:08:19 +0200
commitb076314018e4b53d745823754a26eb6fb73a2801 (patch)
treea834cd64830068f988fda00b25578578ee096363 /src/core/ViewCollection.vala
parentb67c4ba420286470899a63ff8b2fbbfdc17d082c (diff)
New upstream version 0.24.1upstream/0.24.1
Diffstat (limited to 'src/core/ViewCollection.vala')
-rw-r--r--src/core/ViewCollection.vala3
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);
}