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

Some more sal_Bool -> bool

Change-Id: I4ee61f3f1d14cf4a90224199ed72e4de0890b5af
üst 1f898359
......@@ -80,7 +80,7 @@ bool XPropertySet::isPropertyValueChangeable(const OUString& rName)
if (type == cppu::UnoType<bool>::get())
{
// boolean type
bool bOld = any.get<sal_Bool>();
bool bOld = any.get<bool>();
xPropSet->setPropertyValue(rName, makeAny(!bOld));
}
else if (type == cppu::UnoType<sal_Int8>::get())
......
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