Fix to FinishTransparentBitmap that should eliminate image crashes on GTK2 and CGBitmapContextCreate failure on Carbon.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1410 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
macpgmr
2010-12-28 20:29:48 +00:00
parent 2483d1f7d5
commit 5d31c0d79b
2 changed files with 32 additions and 3 deletions

View File

@@ -790,7 +790,7 @@ begin
{$IFDEF MSWINDOWS}
Result := Windows.GetMapMode(DC);
{$ELSE}
WriteLn('GetMapMode not implemented yet');
// WriteLn('GetMapMode not implemented yet');
{$ENDIF}
end;
@@ -799,7 +799,7 @@ begin
{$IFDEF MSWINDOWS}
Result := Windows.SetMapMode(DC, p2);
{$ELSE}
WriteLn('SetMapMode not implemented yet');
// WriteLn('SetMapMode not implemented yet');
{$ENDIF}
end;