summaryrefslogtreecommitdiff
path: root/xmlhelp
diff options
context:
space:
mode:
authorArnaud Versini <arnaud.versini@gmail.com>2012-07-29 14:42:26 +0200
committerArnaud Versini <arnaud.versini@gmail.com>2012-07-29 15:01:56 +0200
commitacd3b2f07026a78a0b819dae0a4a308d115bb1b5 (patch)
treee9a8b66e52a54622186d5ef19405110d7f5073aa /xmlhelp
parent04710a69122d383071520ae3d39664a5edb80520 (diff)
Replace usage of rtl/memory.h in xmlhelp with their equivalent from string.h
Change-Id: I02a1af9bac1e1283f33bc204cd8737ebd2ebd06c
Diffstat (limited to 'xmlhelp')
-rw-r--r--xmlhelp/source/cxxhelp/inc/qe/Query.hxx1
-rw-r--r--xmlhelp/source/cxxhelp/provider/bufferedinputstream.cxx7
-rw-r--r--xmlhelp/source/cxxhelp/provider/databases.cxx15
-rw-r--r--xmlhelp/source/cxxhelp/provider/urlparameter.cxx5
4 files changed, 13 insertions, 15 deletions
diff --git a/xmlhelp/source/cxxhelp/inc/qe/Query.hxx b/xmlhelp/source/cxxhelp/inc/qe/Query.hxx
index 9aa5e95b8c0d..9a3eb4810e5f 100644
--- a/xmlhelp/source/cxxhelp/inc/qe/Query.hxx
+++ b/xmlhelp/source/cxxhelp/inc/qe/Query.hxx
@@ -20,7 +20,6 @@
#define _XMLSEARCH_QE_QUERY_HXX_
#include <sal/types.h>
-#include <rtl/memory.h>
#include <rtl/ustring.hxx>
#include <vector>
diff --git a/xmlhelp/source/cxxhelp/provider/bufferedinputstream.cxx b/xmlhelp/source/cxxhelp/provider/bufferedinputstream.cxx
index 4384a2cfedca..ef84cc86cbb7 100644
--- a/xmlhelp/source/cxxhelp/provider/bufferedinputstream.cxx
+++ b/xmlhelp/source/cxxhelp/provider/bufferedinputstream.cxx
@@ -26,6 +26,7 @@
*
************************************************************************/
+#include <string.h>
#include <rtl/memory.h>
#include "bufferedinputstream.hxx"
@@ -69,10 +70,10 @@ BufferedInputStream::BufferedInputStream(const Reference<XInputStream>& xInputSt
{
tmp = m_pBuffer;
m_pBuffer = new sal_Int8[m_nBufferSize+num];
- rtl_copyMemory((void *)(m_pBuffer),
+ memcpy((void *)(m_pBuffer),
(void *)(tmp),
sal_uInt32(m_nBufferSize));
- rtl_copyMemory((void *)(m_pBuffer+m_nBufferSize),
+ memcpy((void *)(m_pBuffer+m_nBufferSize),
(void *)(aData.getArray()),
sal_uInt32(num));
m_nBufferSize += num;
@@ -142,7 +143,7 @@ sal_Int32 SAL_CALL BufferedInputStream::readBytes( Sequence< sal_Int8 >& aData,s
if( aData.getLength() < nBytesToRead )
aData.realloc(nBytesToRead);
- rtl_copyMemory((void*)(aData.getArray()),
+ memcpy((void*)(aData.getArray()),
(void*)(m_pBuffer+m_nBufferLocation),
nBytesToRead);
diff --git a/xmlhelp/source/cxxhelp/provider/databases.cxx b/xmlhelp/source/cxxhelp/provider/databases.cxx
index 2abd91bb77f2..51ef2cb2ebce 100644
--- a/xmlhelp/source/cxxhelp/provider/databases.cxx
+++ b/xmlhelp/source/cxxhelp/provider/databases.cxx
@@ -32,7 +32,6 @@
#include <osl/process.h>
#include <rtl/uri.hxx>
#include <osl/file.hxx>
-#include <rtl/memory.h>
#include <com/sun/star/lang/Locale.hpp>
#include <rtl/ustrbuf.hxx>
#include "inputstream.hxx"
@@ -1197,11 +1196,11 @@ void Databases::popupDocument( URLParameter* urlPar,char **buffer,int *byteCount
*buffer = new char[ 1+*byteCount ];
- rtl_copyMemory( *buffer,pop1,l1 );
- rtl_copyMemory( *buffer+l1,pop2,l2 );
- rtl_copyMemory( *buffer+(l1+l2),pop3,l3 );
- rtl_copyMemory( *buffer+(l1+l2+l3),pop4,l4 );
- rtl_copyMemory( *buffer+(l1+l2+l3+l4),pop5,l5 );
+ memcpy( *buffer,pop1,l1 );
+ memcpy( *buffer+l1,pop2,l2 );
+ memcpy( *buffer+(l1+l2),pop3,l3 );
+ memcpy( *buffer+(l1+l2+l3),pop4,l4 );
+ memcpy( *buffer+(l1+l2+l3+l4),pop5,l5 );
(*buffer)[*byteCount] = 0;
}
@@ -1306,7 +1305,7 @@ void Databases::cascadingStylesheet( const rtl::OUString& Language,
*byteCount = m_nCustomCSSDocLength;
*buffer = new char[ 1 + *byteCount ];
(*buffer)[*byteCount] = 0;
- rtl_copyMemory( *buffer,m_pCustomCSSDoc,m_nCustomCSSDocLength );
+ memcpy( *buffer,m_pCustomCSSDoc,m_nCustomCSSDocLength );
}
@@ -1377,7 +1376,7 @@ void Databases::setActiveText( const rtl::OUString& Module,
*byteCount = nSize;
*buffer = new char[ 1 + nSize ];
(*buffer)[nSize] = 0;
- rtl_copyMemory( *buffer, pData, nSize );
+ memcpy( *buffer, pData, nSize );
}
else
{
diff --git a/xmlhelp/source/cxxhelp/provider/urlparameter.cxx b/xmlhelp/source/cxxhelp/provider/urlparameter.cxx
index fddd2acacf79..2060c3dab3cd 100644
--- a/xmlhelp/source/cxxhelp/provider/urlparameter.cxx
+++ b/xmlhelp/source/cxxhelp/provider/urlparameter.cxx
@@ -32,7 +32,6 @@
#include <string.h>
#include <osl/diagnose.hxx>
#include <osl/thread.h>
-#include <rtl/memory.h>
#include <osl/file.hxx>
#include <cppuhelper/weak.hxx>
#include <cppuhelper/queryinterface.hxx>
@@ -1206,8 +1205,8 @@ void InputStreamTransformer::addToBuffer( const char* buffer_,int len_ )
char* tmp = buffer;
buffer = new char[ len+len_ ];
- rtl_copyMemory( (void*)(buffer),(void*)(tmp),sal_uInt32( len ) );
- rtl_copyMemory( (void*)(buffer+len),(void*)(buffer_),sal_uInt32( len_ ) );
+ memcpy( (void*)(buffer),(void*)(tmp),sal_uInt32( len ) );
+ memcpy( (void*)(buffer+len),(void*)(buffer_),sal_uInt32( len_ ) );
delete[] tmp;
len += len_;
}