diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-06-18 06:03:26 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-06-18 06:03:26 +0000 |
commit | 1c7ced20664abf837f35c50acd98c8ef4d832647 (patch) | |
tree | d1ba112dc4d84149fe2119575bc6d03f05bff629 /unotools | |
parent | 3c4aacba2f40d7b29af37de7804c6ed800bd4280 (diff) |
#i90819# Remove '::std' for memcpy, fprintf, and fflush
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/i18n/localedatawrapper.cxx | 10 |
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); } |