summaryrefslogtreecommitdiff
path: root/sc/source/core/tool/consoli.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/core/tool/consoli.cxx')
-rw-r--r--sc/source/core/tool/consoli.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/tool/consoli.cxx b/sc/source/core/tool/consoli.cxx
index 2ad21525fd10..649f1771f150 100644
--- a/sc/source/core/tool/consoli.cxx
+++ b/sc/source/core/tool/consoli.cxx
@@ -63,7 +63,7 @@ void ScReferenceList::AddEntry( SCCOL nCol, SCROW nRow, SCTAB nTab )
pData = new ScReferenceEntry[ nFullSize+1 ];
if (pOldData)
{
- memmove( pData, pOldData, nCount * sizeof(ScReferenceEntry) );
+ memcpy( pData, pOldData, nCount * sizeof(ScReferenceEntry) );
delete[] pOldData;
}
while (nCount < nFullSize)
@@ -87,7 +87,7 @@ static void lcl_AddString( String**& pData, T& nCount, const String& rInsert )
pData = new String*[ nCount+1 ];
if (pOldData)
{
- memmove( pData, pOldData, nCount * sizeof(String*) );
+ memcpy( pData, pOldData, nCount * sizeof(String*) );
delete[] pOldData;
}
pData[nCount] = new String(rInsert);