summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--unotools/source/i18n/localedatawrapper.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/unotools/source/i18n/localedatawrapper.cxx b/unotools/source/i18n/localedatawrapper.cxx
index f030833ad544..50a40fe08cb8 100644
--- a/unotools/source/i18n/localedatawrapper.cxx
+++ b/unotools/source/i18n/localedatawrapper.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: localedatawrapper.cxx,v $
- * $Revision: 1.41 $
+ * $Revision: 1.42 $
*
* This file is part of OpenOffice.org.
*
@@ -1375,7 +1375,7 @@ inline sal_Unicode* ImplAddString( sal_Unicode* pBuf, const String& rStr )
;
else
{
- std::memcpy( pBuf, rStr.GetBuffer(), rStr.Len() * sizeof(sal_Unicode) );
+ memcpy( pBuf, rStr.GetBuffer(), rStr.Len() * sizeof(sal_Unicode) );
pBuf += rStr.Len();
}
return pBuf;
@@ -1392,7 +1392,7 @@ inline sal_Unicode* ImplAddString( sal_Unicode* pBuf, sal_Unicode c )
inline sal_Unicode* ImplAddString( sal_Unicode* pBuf, const sal_Unicode* pCopyBuf, xub_StrLen nLen )
{
- std::memcpy( pBuf, pCopyBuf, nLen * sizeof(sal_Unicode) );
+ memcpy( pBuf, pCopyBuf, nLen * sizeof(sal_Unicode) );
return pBuf + nLen;
}
@@ -1971,8 +1971,8 @@ void LocaleDataWrapper::outputCheckMessage( const String& rMsg )
// static
void LocaleDataWrapper::outputCheckMessage( const char* pStr )
{
- std::fprintf( stderr, "\n%s\n", pStr);
- std::fflush( stderr);
+ fprintf( stderr, "\n%s\n", pStr);
+ fflush( stderr);
DBG_ERROR( pStr);
}