diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-06-18 06:04:45 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-06-18 06:04:45 +0000 |
commit | 2a796606209518c5da3bf66435e39267a6f35a11 (patch) | |
tree | 4d9c4692b14bebb29a999b432e18660eb84f8d87 /rsc | |
parent | 1c7ced20664abf837f35c50acd98c8ef4d832647 (diff) |
#i90819# Remove '::std' for memmove
Diffstat (limited to 'rsc')
-rw-r--r-- | rsc/source/res/rscconst.cxx | 4 |
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; |