LCL: TLazIntfImage: After revision 60360 #71e6fd3e59 it isn't needed to call CreateData when Create is called with size and description flags.

git-svn-id: trunk@60361 -
This commit is contained in:
michl 2019-02-07 22:00:54 +00:00
parent 71e6fd3e59
commit 05aa1b08f9
2 changed files with 0 additions and 2 deletions

View File

@ -406,7 +406,6 @@ begin
IconImage.RawImageNeeded(false);
RawImg := IconImage.FImage;
IntfImage := TLazIntfImage.Create(IconImage.Width, IconImage.Height, [riqfRGB, riqfAlpha, riqfUpdate]);
IntfImage.CreateData;
try
SrcImage := TLazIntfImage.Create(RawImg, False);
try

View File

@ -1285,7 +1285,6 @@ function TWidgetSet.GradientFill(DC: HDC; Vertices: PTriVertex; NumVertices: Lon
function CreateIntfImage(W, H: Integer; Clear: Boolean): TLazIntfImage;
begin
Result := TLazIntfImage.Create(W, H, [riqfRGB, riqfAlpha, riqfUpdate]);
Result.CreateData;
if Clear then
Result.FillPixels(FPColor(0, 0, 0, $0000));
end;