summaryrefslogtreecommitdiff
path: root/cppuhelper
diff options
context:
space:
mode:
authorBenjamin Ni <benjaminniri@hotmail.com>2015-09-25 11:41:53 +0100
committerMichael Stahl <mstahl@redhat.com>2015-11-02 23:40:57 +0100
commitbe729e772196f33543e21cb9bac21add87726b20 (patch)
treef2150f458e2b07f8924b4702d37c09c8dd52215a /cppuhelper
parent6ccf68622e51c1b727dd042c1c1a71b5d1fd6a12 (diff)
tdf#94269: Replace "n" prefix for bool variables with "b"
Change-Id: I178545792c7354a362658ac7ef8b1d4cf0865797 Signed-off-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'cppuhelper')
-rw-r--r--cppuhelper/source/propertysetmixin.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/cppuhelper/source/propertysetmixin.cxx b/cppuhelper/source/propertysetmixin.cxx
index c4de4fa547ae..982994f9a5f2 100644
--- a/cppuhelper/source/propertysetmixin.cxx
+++ b/cppuhelper/source/propertysetmixin.cxx
@@ -163,23 +163,23 @@ void Data::initProperties(
if (attr->isBound()) {
attrAttribs |= css::beans::PropertyAttribute::BOUND;
}
- bool setUnknown = false;
+ bool bSetUnknown = false;
if (attr->isReadOnly()) {
attrAttribs |= css::beans::PropertyAttribute::READONLY;
- setUnknown = true;
+ bSetUnknown = true;
}
css::uno::Sequence<
css::uno::Reference<
css::reflection::XCompoundTypeDescription > > excs(
attr->getGetExceptions());
- bool getUnknown = false;
+ bool bGetUnknown = false;
//XXX Special interpretation of getter/setter exceptions only
// works if the specified exceptions are of the exact type, not
// of a supertype:
for (sal_Int32 j = 0; j < excs.getLength(); ++j) {
if ( excs[j]->getName() == "com.sun.star.beans.UnknownPropertyException" )
{
- getUnknown = true;
+ bGetUnknown = true;
break;
}
}
@@ -187,14 +187,14 @@ void Data::initProperties(
for (sal_Int32 j = 0; j < excs.getLength(); ++j) {
if ( excs[j]->getName() == "com.sun.star.beans.UnknownPropertyException" )
{
- setUnknown = true;
+ bSetUnknown = true;
} else if ( excs[j]->getName() == "com.sun.star.beans.PropertyVetoException" )
{
attrAttribs
|= css::beans::PropertyAttribute::CONSTRAINED;
}
}
- if (getUnknown && setUnknown) {
+ if (bGetUnknown && bSetUnknown) {
attrAttribs |= css::beans::PropertyAttribute::OPTIONAL;
}
css::uno::Reference< css::reflection::XTypeDescription > t(