summaryrefslogtreecommitdiff
path: root/rsc/source
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2008-06-18 06:04:45 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2008-06-18 06:04:45 +0000
commit2a796606209518c5da3bf66435e39267a6f35a11 (patch)
tree4d9c4692b14bebb29a999b432e18660eb84f8d87 /rsc/source
parent1c7ced20664abf837f35c50acd98c8ef4d832647 (diff)
#i90819# Remove '::std' for memmove
Diffstat (limited to 'rsc/source')
-rw-r--r--rsc/source/res/rscconst.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/rsc/source/res/rscconst.cxx b/rsc/source/res/rscconst.cxx
index 904cd6d249ad..75d5cd4bb609 100644
--- a/rsc/source/res/rscconst.cxx
+++ b/rsc/source/res/rscconst.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: rscconst.cxx,v $
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
* This file is part of OpenOffice.org.
*
@@ -349,7 +349,7 @@ RSCINST RscEnum::Create( RSCINST * pInst, const RSCINST & rDflt, BOOL bOwnClass
bOwnClass = rDflt.pClass->InHierarchy( this );
if( bOwnClass )
- std::memmove( aInst.pData, rDflt.pData, Size() );
+ memmove( aInst.pData, rDflt.pData, Size() );
else{
((RscEnumInst *)aInst.pData)->nValue = 0;
((RscEnumInst *)aInst.pData)->bDflt = TRUE;