From b0f4e518cd97c19bf9ba1208ce127ea83df53e4e Mon Sep 17 00:00:00 2001 From: Julian Harnath Date: Wed, 18 Nov 2015 14:58:29 +0100 Subject: [PATCH] app_server: fix gcc4 build --- .../app/drawing/Painter/bitmap_painter/DrawBitmapBilinear.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/servers/app/drawing/Painter/bitmap_painter/DrawBitmapBilinear.h b/src/servers/app/drawing/Painter/bitmap_painter/DrawBitmapBilinear.h index 999278463d1..87085b01f06 100644 --- a/src/servers/app/drawing/Painter/bitmap_painter/DrawBitmapBilinear.h +++ b/src/servers/app/drawing/Painter/bitmap_painter/DrawBitmapBilinear.h @@ -267,7 +267,7 @@ struct BilinearDefault : uint32 t[4]; - if (fSource->height() > 1) { + if (this->fSource->height() > 1) { ColorType::Interpolate(&t[0], s, this->fSourceBytesPerRow, wLeft, wTop, wRight, wBottom); } else { @@ -276,7 +276,7 @@ struct BilinearDefault : DrawMode::Blend(d, &t[0]); } // last column of pixels if necessary - if (xIndexMax < xIndexR && fSource->height() > 1) { + if (xIndexMax < xIndexR && this->fSource->height() > 1) { const uint8* s = src + this->fWeightsX[xIndexR].index; const uint8* sBottom = s + this->fSourceBytesPerRow;