summaryrefslogtreecommitdiff
path: root/lib/osx_file_icon.mm
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:27:42 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:27:42 +0200
commitb916407a2a06f8452e82b74dc44c54acbcc572b0 (patch)
tree46358e0bb035fca0f42edb4b5b8aa5f1613814af /lib/osx_file_icon.mm
parent5.20 (diff)
downloadFreeFileSync-b916407a2a06f8452e82b74dc44c54acbcc572b0.tar.gz
FreeFileSync-b916407a2a06f8452e82b74dc44c54acbcc572b0.tar.bz2
FreeFileSync-b916407a2a06f8452e82b74dc44c54acbcc572b0.zip
5.21
Diffstat (limited to 'lib/osx_file_icon.mm')
-rw-r--r--lib/osx_file_icon.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/osx_file_icon.mm b/lib/osx_file_icon.mm
index 4db6642a..fb3c6490 100644
--- a/lib/osx_file_icon.mm
+++ b/lib/osx_file_icon.mm
@@ -65,7 +65,7 @@ osx::ImageData extractBytes(NSImage* nsImg, int requestedSize) //throw SysError;
::CGContextDrawImage(ctxRef, CGRectMake(0, 0, trgWidth, trgHeight), imgRef); //can this fail? not documented
- //CGContextFlush(ctxRef); //"If you pass [...] a bitmap context, this function does nothing."
+ //::CGContextFlush(ctxRef); //"If you pass [...] a bitmap context, this function does nothing."
osx::ImageData imgOut(trgWidth, trgHeight);
bgstack15