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

fix debug=2

Change-Id: I6e334b200c801c7c2e5d5970302e3a1a7c2894a3
üst a4285867
...@@ -980,13 +980,13 @@ SwCalcOper SwCalc::GetToken() ...@@ -980,13 +980,13 @@ SwCalcOper SwCalc::GetToken()
bIgnore = true; bIgnore = true;
else if( bIgnore ) else if( bIgnore )
bIgnore = false; bIgnore = false;
aStr += ch; aStr += OUString(ch);
} }
if( !bIgnore ) if( !bIgnore )
break; break;
aStr.SetChar( aStr.getLength() - 1, ch ); aStr = aStr.replaceAt(aStr.getLength() - 1, 1, OUString(ch));
} while( ch ); } while( ch );
aVarName = aStr; aVarName = aStr;
......
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