Kaydet (Commit) 0a5a76f4 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

WaE: unsafe mix of type 'bool' and type 'sal_Bool' in operation

üst 8f51cde0
......@@ -740,7 +740,7 @@ void FormattedField::SetThousandsSep(sal_Bool _bUseSeparator)
bool bThousand, IsRed;
sal_uInt16 nPrecision, nAnzLeading;
ImplGetFormatter()->GetFormatSpecialInfo(m_nFormatKey, bThousand, IsRed, nPrecision, nAnzLeading);
if (bThousand == _bUseSeparator)
if (bThousand == (bool)_bUseSeparator)
return;
// we need the language for the following
......
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