summaryrefslogtreecommitdiff
path: root/goodies
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-10-05 12:06:14 +0000
committerKurt Zenker <kz@openoffice.org>2005-10-05 12:06:14 +0000
commit6603bae56275bdbf13daef50ac51ba42248a3784 (patch)
tree59eb9385bf0787c333f6e9d0a77cdaa0265e6291 /goodies
parentcc744e4c26bbb3f1c2b0af31082ead9eddd9b9fc (diff)
INTEGRATION: CWS dxarray (1.12.2); FILE MERGED
2005/09/19 11:41:28 kendy 1.12.2.1: #i54697# "long *pDXArray" -> "sal_Int32 *pDXArray" patches extracted from ooo64bit02 to conform the declaration in VCL.
Diffstat (limited to 'goodies')
-rw-r--r--goodies/source/filter.vcl/eos2met/eos2met.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/goodies/source/filter.vcl/eos2met/eos2met.cxx b/goodies/source/filter.vcl/eos2met/eos2met.cxx
index b462fd47fd90..8177c43dc7f2 100644
--- a/goodies/source/filter.vcl/eos2met/eos2met.cxx
+++ b/goodies/source/filter.vcl/eos2met/eos2met.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: eos2met.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 02:33:33 $
+ * last change: $Author: kz $ $Date: 2005-10-05 13:06:14 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -1943,7 +1943,7 @@ void METWriter::WriteOrders( const GDIMetaFile* pMTF )
const MetaStretchTextAction* pA = (const MetaStretchTextAction*) pMA;
VirtualDevice aVDev;
USHORT i;
- long* pDXAry;
+ sal_Int32* pDXAry;
sal_Int32 nNormSize;
String aStr;
Polygon aPolyDummy(1);
@@ -1968,7 +1968,7 @@ void METWriter::WriteOrders( const GDIMetaFile* pMTF )
METSetChrAngle( nOrientation = aGDIFont.GetOrientation() );
METSetChrSet(FindChrSet(aGDIFont));
aStr=String(pA->GetText(),pA->GetIndex(),pA->GetLen());
- pDXAry=new long[aStr.Len()];
+ pDXAry=new sal_Int32[aStr.Len()];
nNormSize = aVDev.GetTextArray( aStr, pDXAry );
for ( i = 0; i < aStr.Len(); i++ )