summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-06-18 10:12:11 +0100
committerVincent Sanders <vince@kyllikki.org>2015-06-18 10:12:11 +0100
commit8aa04c24473947e2d2496bca1ca17275aee549dc (patch)
tree1cac4ec4c59d9abde4a03c438f4be3506bf0ec57
parent9c6b3e8c32991ac8436afcf8016268eeb8ef24c3 (diff)
downloadnetsurf-8aa04c24473947e2d2496bca1ca17275aee549dc.tar.gz
netsurf-8aa04c24473947e2d2496bca1ca17275aee549dc.tar.bz2
Fix cocoa_bitmap_modified scope error introduced in cleanup
-rw-r--r--cocoa/bitmap.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/cocoa/bitmap.m b/cocoa/bitmap.m
index bd4e2228f..6e263a1ea 100644
--- a/cocoa/bitmap.m
+++ b/cocoa/bitmap.m
@@ -157,7 +157,7 @@ static bool bitmap_save(void *bitmap, const char *path, unsigned flags)
return [tiff writeToFile: [NSString stringWithUTF8String: path] atomically: YES];
}
-static void cocoa_bitmap_modified(void *bitmap)
+void cocoa_bitmap_modified(void *bitmap)
{
NSMapTable *cache = cocoa_get_bitmap_cache();
CGImageRef image = NSMapGet( cache, bitmap );