summaryrefslogtreecommitdiff
path: root/vcl/os2/source
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-06-24 10:40:18 +0000
committerKurt Zenker <kz@openoffice.org>2008-06-24 10:40:18 +0000
commitb2c1ceb08bfb484484ab7bcfe47fd43ad3f653a8 (patch)
tree00bfe15a9c3093bdb0e05e3dc1facd2e9f944df2 /vcl/os2/source
parent527441d4d00c25b87ac9a6a0d9ba52726c3f8af1 (diff)
INTEGRATION: CWS canvas05 (1.6.2); FILE MERGED
2008/04/21 07:47:57 thb 1.6.2.3: RESYNC: (1.6-1.7); FILE MERGED 2008/04/06 19:35:19 mox 1.6.2.2: Change headers to GetGraphicsData() const, Build fixes for VCL aqua 2008/01/24 16:50:08 thb 1.6.2.1: #i85559# Added OutputDevice::GetCanvas method (and necessary ground work)
Diffstat (limited to 'vcl/os2/source')
-rw-r--r--vcl/os2/source/gdi/salgdi.cxx14
1 files changed, 13 insertions, 1 deletions
diff --git a/vcl/os2/source/gdi/salgdi.cxx b/vcl/os2/source/gdi/salgdi.cxx
index 38a272ed095e..be87cfb7b2bc 100644
--- a/vcl/os2/source/gdi/salgdi.cxx
+++ b/vcl/os2/source/gdi/salgdi.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: salgdi.cxx,v $
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
* This file is part of OpenOffice.org.
*
@@ -1011,3 +1011,15 @@ BOOL Os2SalGraphics::IsNativeControlSupported( ControlType nType, ControlPart nP
{
return( FALSE );
}
+
+// -----------------------------------------------------------------------
+
+SystemGraphicsData Os2SalGraphics::GetGraphicsData() const
+{
+ SystemGraphicsData aRes;
+ aRes.nSize = sizeof(aRes);
+ aRes.hDC = mhDC;
+ return aRes;
+}
+
+// -----------------------------------------------------------------------