diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-10-21 09:30:09 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-10-21 11:25:00 +0100 |
commit | d486b2b324364dd99bea686b6969f7a796f5e329 (patch) | |
tree | 9be8b6f1cf2bafb39e984670265d2b56f65daa50 /tools/source | |
parent | 8fc6905674142c226a117a97a08cf0b24c9d4fc1 (diff) |
Related: fdo#38838 remove/privatize String::Append
Change-Id: I5ae90b02e7ae5ddd19495fd0847b7e9dfc4419e8
Diffstat (limited to 'tools/source')
-rw-r--r-- | tools/source/string/tustring.cxx | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/tools/source/string/tustring.cxx b/tools/source/string/tustring.cxx index 42c69477c865..f4f3bd27086d 100644 --- a/tools/source/string/tustring.cxx +++ b/tools/source/string/tustring.cxx @@ -79,27 +79,6 @@ sal_Bool operator==(const UniString& rStr1, const UniString& rStr2) return (ImplStringCompareWithoutZero( rStr1.mpData->maStr, rStr2.mpData->maStr, rStr1.mpData->mnLen ) == 0); } -STRING& STRING::Append( STRCODE c ) -{ - // don't append null characters and keep string length < maxlen - sal_Int32 nLen = mpData->mnLen; - if ( c && (nLen < STRING_MAXLEN) ) - { - // allocate string of new size - STRINGDATA* pNewData = ImplAllocData( nLen+1 ); - - // copy string - memcpy( pNewData->maStr, mpData->maStr, nLen*sizeof( STRCODE ) ); - pNewData->maStr[nLen] = c; - - // free old string - STRING_RELEASE((STRING_TYPE *)mpData); - mpData = pNewData; - } - - return *this; -} - xub_StrLen ImplStringLen( const sal_Char* pStr ) { const sal_Char* pTempStr = pStr; |