Kaydet (Commit) 4e933ea8 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

sal_Bool -> bool

Change-Id: I0d491db88b181de63fcfb2e45a02571f272b6bfe
üst f893a2b9
......@@ -125,9 +125,9 @@ tryPropertyValueEnum(css::uno::Any& /*out*/_rConvertedValue, css::uno::Any& /*ou
inline bool tryPropertyValue(css::uno::Any& /*out*/_rConvertedValue, css::uno::Any& /*out*/_rOldValue, const css::uno::Any& _rValueToSet, bool _bCurrentValue)
{
bool bModified(false);
sal_Bool bNewValue(false);
bool bNewValue(false);
::cppu::convertPropertyValue(bNewValue, _rValueToSet);
if (bool(bNewValue) != _bCurrentValue)
if (bNewValue != _bCurrentValue)
{
_rConvertedValue <<= bNewValue;
_rOldValue <<= _bCurrentValue;
......
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