summaryrefslogtreecommitdiff
path: root/unotools/source/i18n
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2008-06-18 06:03:26 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2008-06-18 06:03:26 +0000
commit1c7ced20664abf837f35c50acd98c8ef4d832647 (patch)
treed1ba112dc4d84149fe2119575bc6d03f05bff629 /unotools/source/i18n
parent3c4aacba2f40d7b29af37de7804c6ed800bd4280 (diff)
#i90819# Remove '::std' for memcpy, fprintf, and fflush
Diffstat (limited to 'unotools/source/i18n')
-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);
}