From 3714051f1495791095cce885918d48dce7b339f7 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sun, 20 Oct 2013 20:06:15 +0100 Subject: Related: fdo#38838 remove String::[G|S]etChar Change-Id: I64711aa3e6580eff7c64a92243e3161ef2d7cb9e --- tools/source/string/strimp.cxx | 9 --------- 1 file changed, 9 deletions(-) (limited to 'tools') 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 -- cgit