From: Jan D Date: Wed, 24 Dec 2014 11:26:25 +0000 (+0100) Subject: Avoid compiler warning. X-Git-Tag: emacs-24.4.90~109 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0d48826;p=emacs.git Avoid compiler warning. * nsimage.m (setPixmapData): Rename local variable bmRep to avoid compiler warning. --- diff --git a/src/ChangeLog b/src/ChangeLog index 530b9130783..2840109ac1c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -4,6 +4,8 @@ (dealloc): Release bmRep. (setPixmapData): Make bmRep local so class member is not set (Bug#19133). + (setPixmapData): Rename local variable bmRep to avoid compiler + warning. 2014-12-24 Jan Djärv diff --git a/src/nsimage.m b/src/nsimage.m index a625f20616d..cb3d82af281 100644 --- a/src/nsimage.m +++ b/src/nsimage.m @@ -351,15 +351,15 @@ ns_set_alpha (void *img, int x, int y, unsigned char a) { if ([rep respondsToSelector: @selector (getBitmapDataPlanes:)]) { - NSBitmapImageRep *bmRep = (NSBitmapImageRep *) rep; + NSBitmapImageRep *bmr = (NSBitmapImageRep *) rep; - if ([bmRep numberOfPlanes] >= 3) - [bmRep getBitmapDataPlanes: pixmapData]; + if ([bmr numberOfPlanes] >= 3) + [bmr getBitmapDataPlanes: pixmapData]; /* The next two lines cause the DPI of the image to be ignored. This seems to be the behavior users expect. */ [self setScalesWhenResized: YES]; - [self setSize: NSMakeSize([bmRep pixelsWide], [bmRep pixelsHigh])]; + [self setSize: NSMakeSize([bmr pixelsWide], [bmr pixelsHigh])]; break; }