From 1c7ced20664abf837f35c50acd98c8ef4d832647 Mon Sep 17 00:00:00 2001 From: RĂ¼diger Timm Date: Wed, 18 Jun 2008 06:03:26 +0000 Subject: #i90819# Remove '::std' for memcpy, fprintf, and fflush --- unotools/source/i18n/localedatawrapper.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'unotools') 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); } -- cgit