diff options
author | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2007-06-08 14:49:21 +0000 |
---|---|---|
committer | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2007-06-08 14:49:21 +0000 |
commit | b59ae1fdceaf90c7ee9db5d8bce6a875764cb089 (patch) | |
tree | fc8d0d577558aecf78c5612618fab94d856ead51 /gfx/carbon | |
parent | 47340659a723589f6381cadbc95fd88298412269 (diff) | |
download | fpGUI-b59ae1fdceaf90c7ee9db5d8bce6a875764cb089.tar.xz |
* Moved the TColor definition to the GFX code
* Changed the TFBitmap.Lock methods parameters from var to out.
* Implemented a GfxColorToTColor() method
Diffstat (limited to 'gfx/carbon')
-rw-r--r-- | gfx/carbon/gfx_carbon.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gfx/carbon/gfx_carbon.pas b/gfx/carbon/gfx_carbon.pas index 8ca3a083..a63eba29 100644 --- a/gfx/carbon/gfx_carbon.pas +++ b/gfx/carbon/gfx_carbon.pas @@ -336,7 +336,7 @@ begin inherited Destroy; end; -procedure TCarbonBitmap.Lock(var AData: Pointer; var AStride: LongWord); +procedure TCarbonBitmap.Lock(out AData: Pointer; out AStride: LongWord); begin end; |