summaryrefslogtreecommitdiff
path: root/vcl/win
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-06-24 10:46:47 +0000
committerKurt Zenker <kz@openoffice.org>2008-06-24 10:46:47 +0000
commit2dbf473cf6e28c1482582bbcc5a5ff8cac3f760a (patch)
treece68752a3f95c5dfc1f2f5cadb63abbb63c49812 /vcl/win
parent98d93b0c1cfa9fd79c443f5684cd6cf2b9e92c1f (diff)
INTEGRATION: CWS canvas05 (1.32.246); FILE MERGED
2008/04/21 07:47:14 thb 1.32.246.3: RESYNC: (1.32-1.33); FILE MERGED 2008/04/06 19:35:20 mox 1.32.246.2: Change headers to GetGraphicsData() const, Build fixes for VCL aqua 2008/01/24 16:50:10 thb 1.32.246.1: #i85559# Added OutputDevice::GetCanvas method (and necessary ground work)
Diffstat (limited to 'vcl/win')
-rw-r--r--vcl/win/source/gdi/salgdi.cxx14
1 files changed, 13 insertions, 1 deletions
diff --git a/vcl/win/source/gdi/salgdi.cxx b/vcl/win/source/gdi/salgdi.cxx
index 9f1102580e6d..7193a2e45908 100644
--- a/vcl/win/source/gdi/salgdi.cxx
+++ b/vcl/win/source/gdi/salgdi.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: salgdi.cxx,v $
- * $Revision: 1.34 $
+ * $Revision: 1.35 $
*
* This file is part of OpenOffice.org.
*
@@ -1809,3 +1809,15 @@ BOOL WinSalGraphics::drawEPS( long nX, long nY, long nWidth, long nHeight, void*
return bRetValue;
}
+
+// -----------------------------------------------------------------------
+
+SystemGraphicsData WinSalGraphics::GetGraphicsData() const
+{
+ SystemGraphicsData aRes;
+ aRes.nSize = sizeof(aRes);
+ aRes.hDC = mhDC;
+ return aRes;
+}
+
+// -----------------------------------------------------------------------