Fixx FormulaCompiler build after the O[U]String[Buffer] changes

This commit is contained in:
Fridrich Štrba 2011-09-27 23:11:16 +02:00
parent 2a214cc6d3
commit 928f7a47a1

View file

@ -1609,7 +1609,7 @@ FormulaToken* FormulaCompiler::CreateStringFromToken( String& rFormula, FormulaT
{
rtl::OUStringBuffer aBuffer;
FormulaToken* p = CreateStringFromToken( aBuffer, pTokenP, bAllowArrAdvance );
rFormula += aBuffer.makeStringAndClear();
rFormula += aBuffer.makeStringAndClear().getStr();
return p;
}