Kaydet (Commit) c1324a51 authored tarafından Caolán McNamara's avatar Caolán McNamara

ditch temporary unused Strings

Change-Id: Ie4e27ed027761748e45f2ed6b97b236f742c01be
üst 9cee2122
...@@ -1616,9 +1616,6 @@ void SwTxtNode::TransliterateText( ...@@ -1616,9 +1616,6 @@ void SwTxtNode::TransliterateText(
nEnd = (xub_StrLen)aCurWordBndry.endPos; nEnd = (xub_StrLen)aCurWordBndry.endPos;
sal_Int32 nLen = nEnd - nStt; sal_Int32 nLen = nEnd - nStt;
OSL_ENSURE( nLen > 0, "invalid word length of 0" ); OSL_ENSURE( nLen > 0, "invalid word length of 0" );
#if OSL_DEBUG_LEVEL > 1
String aText( GetTxt().Copy( nStt, nLen ) );
#endif
Sequence <sal_Int32> aOffsets; Sequence <sal_Int32> aOffsets;
String sChgd( rTrans.transliterate( GetTxt(), GetLang( nStt ), nStt, nLen, &aOffsets )); String sChgd( rTrans.transliterate( GetTxt(), GetLang( nStt ), nStt, nLen, &aOffsets ));
...@@ -1699,9 +1696,6 @@ void SwTxtNode::TransliterateText( ...@@ -1699,9 +1696,6 @@ void SwTxtNode::TransliterateText(
{ {
sal_Int32 nLen = nCurrentEnd - nCurrentStart; sal_Int32 nLen = nCurrentEnd - nCurrentStart;
OSL_ENSURE( nLen > 0, "invalid word length of 0" ); OSL_ENSURE( nLen > 0, "invalid word length of 0" );
#if OSL_DEBUG_LEVEL > 1
String aText( GetTxt().Copy( nCurrentStart, nLen ) );
#endif
Sequence <sal_Int32> aOffsets; Sequence <sal_Int32> aOffsets;
String sChgd( rTrans.transliterate( GetTxt(), String sChgd( rTrans.transliterate( GetTxt(),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment