diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-10-20 20:06:15 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-10-21 09:17:31 +0100 |
commit | 3714051f1495791095cce885918d48dce7b339f7 (patch) | |
tree | 18fa4d379e30064f5b8425944393a58c80bb56cc /tools | |
parent | 60ff30a2ab0cb219a1dc46e599ad01416bb8d7fa (diff) |
Related: fdo#38838 remove String::[G|S]etChar
Change-Id: I64711aa3e6580eff7c64a92243e3161ef2d7cb9e
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 |