diff options
author | Kurt Zenker <kz@openoffice.org> | 2008-06-24 10:36:32 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2008-06-24 10:36:32 +0000 |
commit | 64601a1c42f550e1e9005c24caddcc201526ca6d (patch) | |
tree | 0f6b23fee4d3ad10bab8c7117092960eb9361187 /vcl | |
parent | 7a6b36a6dbc14dd07a48a745fa9fd14f1285eff2 (diff) |
INTEGRATION: CWS canvas05 (1.66.10); FILE MERGED
2008/06/23 13:32:28 thb 1.66.10.5: RESYNC: (1.71-1.75); FILE MERGED
2008/04/21 07:47:23 thb 1.66.10.4: RESYNC: (1.70-1.71); FILE MERGED
2008/04/07 14:38:29 thb 1.66.10.3: RESYNC: (1.66-1.70); FILE MERGED
2008/04/06 19:35:17 mox 1.66.10.2: Change headers to GetGraphicsData() const,
Build fixes for VCL aqua
2008/01/24 16:50:07 thb 1.66.10.1: #i85559# Added OutputDevice::GetCanvas method (and necessary ground work)
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/aqua/source/gdi/salgdi.cxx | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/vcl/aqua/source/gdi/salgdi.cxx b/vcl/aqua/source/gdi/salgdi.cxx index 30a80d120ea1..559a775b6bb5 100644 --- a/vcl/aqua/source/gdi/salgdi.cxx +++ b/vcl/aqua/source/gdi/salgdi.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: salgdi.cxx,v $ - * $Revision: 1.75 $ + * $Revision: 1.76 $ * * This file is part of OpenOffice.org. * @@ -45,6 +45,8 @@ #include "rtl/bootstrap.h" #include "rtl/strbuf.hxx" +#include "vcl/sysdata.hxx" + #include "vcl/sallayout.hxx" #include "salatsuifontutils.hxx" #include "vcl/svapp.hxx" @@ -2140,6 +2142,16 @@ void AquaSalGraphics::FreeEmbedFontData( const void* pData, long nDataLen ) // ----------------------------------------------------------------------- +SystemGraphicsData AquaSalGraphics::GetGraphicsData() const +{ + SystemGraphicsData aRes; + aRes.nSize = sizeof(aRes); + aRes.rCGContext = mrContext; + return aRes; +} + +// ----------------------------------------------------------------------- + void AquaSalGraphics::SetXORMode( BOOL bSet ) { // return early if XOR mode remains unchanged |