diff options
Diffstat (limited to 'src/PixbufCache.vala')
-rw-r--r-- | src/PixbufCache.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PixbufCache.vala b/src/PixbufCache.vala index 5b79868..6ab4426 100644 --- a/src/PixbufCache.vala +++ b/src/PixbufCache.vala @@ -14,7 +14,7 @@ public class PixbufCache : Object { public class PixbufCacheBatch : Gee.TreeMultiMap<BackgroundJob.JobPriority, Photo> { public PixbufCacheBatch() { - base (BackgroundJob.JobPriority.compare_func); + base ((GLib.CompareDataFunc<BackgroundJob.JobPriority>)BackgroundJob.JobPriority.compare_func); } } |