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

That SB variable was a temporary debugging aid

...inadvertently checked in with 7bcf64c2 "Add
isReadOnly() support to simplified configuration access"

Change-Id: I9b8b477f682605fcdcf65f8e1255524d010495be
üst e6e409b6
......@@ -128,8 +128,10 @@ comphelper::detail::ConfigurationWrapper::~ConfigurationWrapper() {}
bool comphelper::detail::ConfigurationWrapper::isReadOnly(OUString const & path)
const
{
css::beans::Property SB(access_->getPropertyByHierarchicalName(path));
return (SB.Attributes & css::beans::PropertyAttribute::READONLY) != 0;
return
(access_->getPropertyByHierarchicalName(path).Attributes
& css::beans::PropertyAttribute::READONLY)
!= 0;
}
css::uno::Any comphelper::detail::ConfigurationWrapper::getPropertyValue(
......
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