summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2004-01-06 11:41:25 +0000
committerVladimir Glazounov <vg@openoffice.org>2004-01-06 11:41:25 +0000
commit6ac70669204dbaa40103656160a0b64ff5a79d35 (patch)
tree09d6fd001be404706bf963c76585f3873b59a1f9 /extensions
parent2fa0f9c3d8b7a7f441d0f387b367ca2a570161bc (diff)
INTEGRATION: CWS vclcleanup02 (1.6.126); FILE MERGED
2003/12/19 07:34:49 mt 1.6.126.1: #i23061# More VCL cleanups...
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/svg/svgaction.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/extensions/source/svg/svgaction.cxx b/extensions/source/svg/svgaction.cxx
index 83d69ca2cfa5..6ed22c7ffefc 100644
--- a/extensions/source/svg/svgaction.cxx
+++ b/extensions/source/svg/svgaction.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: svgaction.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: rt $ $Date: 2003-04-08 15:40:45 $
+ * last change: $Author: vg $ $Date: 2004-01-06 12:41:25 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -209,13 +209,13 @@ FastString& FastString::operator+=( const NMSP_RTL::OUString& rStr )
const sal_uInt32 nNewBufLen = ( mnBufLen + ( ( ( mnCurLen + rStr.getLength() ) - mnBufLen ) / mnBufInc + 1 ) * mnBufInc );
sal_Unicode* pNewBuffer = new sal_Unicode[ nNewBufLen * sizeof( sal_Unicode ) ];
- HMEMCPY( pNewBuffer, mpBuffer, mnBufLen * sizeof( sal_Unicode ) );
+ memcpy( pNewBuffer, mpBuffer, mnBufLen * sizeof( sal_Unicode ) );
delete[] mpBuffer;
mpBuffer = pNewBuffer;
mnBufLen = nNewBufLen;
}
- HMEMCPY( mpBuffer + mnCurLen, rStr.getStr(), rStr.getLength() * sizeof( sal_Unicode ) );
+ memcpy( mpBuffer + mnCurLen, rStr.getStr(), rStr.getLength() * sizeof( sal_Unicode ) );
mnCurLen += rStr.getLength();
if( maString.getLength() )