summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-01-09 14:07:01 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-01-09 14:07:30 +0100
commit8912e6dab98eabbdeea870a387d30ef1de938acb (patch)
treef53a5e294f2ff01fb1cce573b9251b1c9ba3f06a
parentee6c4df8d695384abefa57c27180cbe873046bd8 (diff)
Apparently wants to use pData, not &pData, as source
Change-Id: I22a3aba3266ae8209242cf6e02ca8c66b1be863b
-rw-r--r--vcl/source/gdi/gdimtf.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/gdi/gdimtf.cxx b/vcl/source/gdi/gdimtf.cxx
index ac83c6da11a0..8cf47471b8f3 100644
--- a/vcl/source/gdi/gdimtf.cxx
+++ b/vcl/source/gdi/gdimtf.cxx
@@ -507,7 +507,7 @@ void GDIMetaFile::ImplDelegate2PluggableRenderer( const MetaCommentAction* pAct,
// delay intialization of XGraphic, to only expose
// XGraphic-generating services to arbitrary binary data
uno::Sequence< sal_Int8 > aSeq(
- (sal_Int8*)&pData, pEndData-pData );
+ (sal_Int8*)pData, pEndData-pData );
uno::Sequence<uno::Any> aGraphicsArgs(1);
aGraphicsArgs[0] = makeAny(aSeq);
xInit->initialize(aGraphicsArgs);