diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/string/strimp.cxx | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tools/source/string/strimp.cxx b/tools/source/string/strimp.cxx index 335c6aed2e26..e62f5ed5d0b1 100644 --- a/tools/source/string/strimp.cxx +++ b/tools/source/string/strimp.cxx @@ -167,15 +167,6 @@ STRING& STRING::Append( const STRING& rStr ) return *this; } -void STRING::SetChar( xub_StrLen nIndex, STRCODE c ) -{ - DBG_ASSERT( nIndex < mpData->mnLen, "String::SetChar() - nIndex > String.Len()" ); - - // copy data if necessary - ImplCopyData(); - mpData->maStr[nIndex] = c; -} - STRING& STRING::Insert( const STRING& rStr, xub_StrLen nIndex ) { // detect overflow |