diff options
author | Olivier Hallot <olivier.hallot@alta.org.br> | 2011-12-14 10:59:15 -0200 |
---|---|---|
committer | Ivan Timofeev <timofeev.i.s@gmail.com> | 2011-12-17 10:05:35 +0400 |
commit | 4a0ab53cf44be11053a095470ad8cb426487dbc6 (patch) | |
tree | 4b22581634162ddf1477fb58f86ce2a7854c6399 | |
parent | 091790f678321f8c314ce820f2175050f29de2e3 (diff) |
Fix for fdo43460 Part VIII getLength() to isEmpty()
Part VIII
Module
comfigmgr
-rw-r--r-- | configmgr/source/access.cxx | 16 | ||||
-rw-r--r-- | configmgr/source/childaccess.cxx | 6 | ||||
-rw-r--r-- | configmgr/source/components.cxx | 2 | ||||
-rw-r--r-- | configmgr/source/configurationprovider.cxx | 22 | ||||
-rw-r--r-- | configmgr/source/data.cxx | 12 | ||||
-rw-r--r-- | configmgr/source/propertynode.cxx | 2 | ||||
-rw-r--r-- | configmgr/source/valueparser.cxx | 6 | ||||
-rw-r--r-- | configmgr/source/writemodfile.cxx | 6 | ||||
-rw-r--r-- | configmgr/source/xcdparser.cxx | 4 | ||||
-rw-r--r-- | configmgr/source/xcuparser.cxx | 6 |
10 files changed, 41 insertions, 41 deletions
diff --git a/configmgr/source/access.cxx b/configmgr/source/access.cxx index b6617b416c66..694e0810314c 100644 --- a/configmgr/source/access.cxx +++ b/configmgr/source/access.cxx @@ -615,7 +615,7 @@ rtl::OUString Access::getHierarchicalName() throw (css::uno::RuntimeException) { path.append(root->getAbsolutePathRepresentation()); } rtl::OUString rel(getRelativePathRepresentation()); - if (path.getLength() != 0 && rel.getLength() != 0) { + if (path.getLength() != 0 && !rel.isEmpty()) { path.append(sal_Unicode('/')); } path.append(rel); @@ -631,7 +631,7 @@ rtl::OUString Access::composeHierarchicalName( assert(thisIs(IS_ANY)); osl::MutexGuard g(*lock_); checkLocalizedPropertyAccess(); - if (aRelativeName.getLength() == 0 || aRelativeName[0] == '/') { + if (aRelativeName.isEmpty() || aRelativeName[0] == '/') { throw css::lang::IllegalArgumentException( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( @@ -671,7 +671,7 @@ void Access::setName(rtl::OUString const & aName) rtl::Reference< Access > parent(getParentAccess()); if (parent.is()) { rtl::Reference< Node > node(getNode()); - if (node->getTemplateName().getLength() != 0) { + if (! node->getTemplateName().isEmpty()) { rtl::Reference< ChildAccess > other( parent->getChild(aName)); if (other.get() == this) { @@ -1817,7 +1817,7 @@ void Access::initBroadcasterAndChanges( case Node::KIND_GROUP: case Node::KIND_SET: if (i->second.children.empty()) { - if (child->getNode()->getTemplateName().getLength() != 0) { + if (!child->getNode()->getTemplateName().isEmpty()) { for (ContainerListeners::iterator j( containerListeners_.begin()); j != containerListeners_.end(); ++j) @@ -2054,7 +2054,7 @@ rtl::Reference< ChildAccess > Access::getUnmodifiedChild( rtl::Reference< ChildAccess > Access::getSubChild(rtl::OUString const & path) { sal_Int32 i = 0; // For backwards compatibility, allow absolute paths where meaningful: - if (path.getLength() != 0 && path[0] == '/') { + if (!path.isEmpty() && path[0] == '/') { ++i; if (!getRootAccess().is()) { return rtl::Reference< ChildAccess >(); @@ -2101,13 +2101,13 @@ rtl::Reference< ChildAccess > Access::getSubChild(rtl::OUString const & path) { switch (p->kind()) { case Node::KIND_LOCALIZED_PROPERTY: if (!Components::allLocales(getRootAccess()->getLocale()) || - templateName.getLength() != 0) + !templateName.isEmpty()) { return rtl::Reference< ChildAccess >(); } break; case Node::KIND_SET: - if (templateName.getLength() != 0 && + if (!templateName.isEmpty() && !dynamic_cast< SetNode * >(p.get())->isValidTemplate( templateName)) { @@ -2211,7 +2211,7 @@ void Access::checkFinalized() { } void Access::checkKnownProperty(rtl::OUString const & descriptor) { - if (descriptor.getLength() == 0) { + if (descriptor.isEmpty()) { return; } rtl::Reference< ChildAccess > child(getChild(descriptor)); diff --git a/configmgr/source/childaccess.cxx b/configmgr/source/childaccess.cxx index a9c41d2e0ac2..180df7c5015e 100644 --- a/configmgr/source/childaccess.cxx +++ b/configmgr/source/childaccess.cxx @@ -201,7 +201,7 @@ void ChildAccess::bind( rtl::Reference< Access > const & parent, rtl::OUString const & name) throw () { - assert(!parent_.is() && root.is() && parent.is() && name.getLength() != 0); + assert(!parent_.is() && root.is() && parent.is() && !name.isEmpty()); root_ = root; parent_ = parent; name_ = name; @@ -272,7 +272,7 @@ namespace { rtl::OUString lcl_StripSegment(const rtl::OUString &rLocale) { - sal_Int32 i = rLocale.getLength() ? rLocale.getLength() - 1 : 0; + sal_Int32 i = !rLocale.isEmpty() ? rLocale.getLength() - 1 : 0; while (i > 0 && rLocale[i] != '-' && rLocale[i] != '_') --i; return rLocale.copy(0, i); @@ -301,7 +301,7 @@ css::uno::Any ChildAccess::asValue() { if (child.is()) break; rtl::OUString sTmpLocale = lcl_StripSegment(sLocale); - if (!sTmpLocale.getLength()) + if (sTmpLocale.isEmpty()) break; sLocale = sTmpLocale; } diff --git a/configmgr/source/components.cxx b/configmgr/source/components.cxx index 77f8c012e368..a44f07c8f4e0 100644 --- a/configmgr/source/components.cxx +++ b/configmgr/source/components.cxx @@ -710,7 +710,7 @@ void Components::parseFileList( { for (sal_Int32 i = 0;;) { rtl::OUString url(urls.getToken(0, ' ', i)); - if (url.getLength() != 0) { + if (!url.isEmpty()) { ini.expandMacrosFrom(url); //TODO: detect failure Additions * adds = 0; if (recordAdditions) { diff --git a/configmgr/source/configurationprovider.cxx b/configmgr/source/configurationprovider.cxx index 952db7a2d2cf..5a7ed78d4093 100644 --- a/configmgr/source/configurationprovider.cxx +++ b/configmgr/source/configurationprovider.cxx @@ -205,7 +205,7 @@ Service::createInstanceWithArguments( } else if (Arguments.getLength() == 1 && (Arguments[i] >>= nodepath)) { // For backwards compatibility, allow a single string argument that // denotes nodepath. - if (nodepath.getLength() == 0) { + if (nodepath.isEmpty()) { badNodePath(); } break; @@ -222,16 +222,16 @@ Service::createInstanceWithArguments( if (name.equalsIgnoreAsciiCaseAsciiL( RTL_CONSTASCII_STRINGPARAM("nodepath"))) { - if (nodepath.getLength() != 0 || !(value >>= nodepath) || - nodepath.getLength() == 0) + if (!nodepath.isEmpty() || !(value >>= nodepath) || + nodepath.isEmpty()) { badNodePath(); } } else if (name.equalsIgnoreAsciiCaseAsciiL( RTL_CONSTASCII_STRINGPARAM("locale"))) { - if (locale.getLength() != 0 || !(value >>= locale) || - locale.getLength() == 0) + if (!locale.isEmpty() || !(value >>= locale) || + locale.isEmpty()) { throw css::uno::Exception( rtl::OUString( @@ -243,7 +243,7 @@ Service::createInstanceWithArguments( } } } - if (nodepath.getLength() == 0) { + if (nodepath.isEmpty()) { badNodePath(); } // For backwards compatibility, allow a nodepath that misses the leading @@ -251,10 +251,10 @@ Service::createInstanceWithArguments( if (nodepath[0] != '/') { nodepath = rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("/")) + nodepath; } - if (locale.getLength() == 0) { + if (locale.isEmpty()) { //TODO: should the Access use the dynamically changing locale_ instead? locale = locale_; - if (locale.getLength() == 0) { + if (locale.isEmpty()) { locale = rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("en-US")); } } @@ -367,7 +367,7 @@ css::lang::Locale Service::getLocale() throw (css::uno::RuntimeException) { css::lang::Locale loc; if (locale_.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("*"))) { loc.Language = locale_; - } else if (locale_.getLength() != 0) { + } else if (! locale_.isEmpty()) { try { comphelper::Locale l(locale_); loc.Language = l.getLanguage(); @@ -487,8 +487,8 @@ Factory::createInstanceWithArgumentsAndContext( if (name.equalsIgnoreAsciiCaseAsciiL( RTL_CONSTASCII_STRINGPARAM("locale"))) { - if (locale.getLength() != 0 || !(value >>= locale) || - locale.getLength() == 0) + if (!locale.isEmpty() || !(value >>= locale) || + locale.isEmpty()) { throw css::uno::Exception( rtl::OUString( diff --git a/configmgr/source/data.cxx b/configmgr/source/data.cxx index df7ce604b649..963d3537defc 100644 --- a/configmgr/source/data.cxx +++ b/configmgr/source/data.cxx @@ -99,7 +99,7 @@ bool decode( rtl::OUString Data::createSegment( rtl::OUString const & templateName, rtl::OUString const & name) { - if (templateName.getLength() == 0) { + if (templateName.isEmpty()) { return name; } rtl::OUStringBuffer buf(templateName); @@ -215,7 +215,7 @@ rtl::Reference< Node > Data::resolvePathRepresentation( rtl::OUString * canonicRepresentation, Path * path, int * finalizedLayer) const { - if (pathRepresentation.getLength() == 0 || pathRepresentation[0] != '/') { + if (pathRepresentation.isEmpty() || pathRepresentation[0] != '/') { throw css::uno::RuntimeException( (rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("bad path ")) + pathRepresentation), @@ -295,7 +295,7 @@ rtl::Reference< Node > Data::resolvePathRepresentation( if (setElement) { switch (parent->kind()) { case Node::KIND_LOCALIZED_PROPERTY: - if (templateName.getLength() != 0) { + if (!templateName.isEmpty()) { throw css::uno::RuntimeException( (rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("bad path ")) + @@ -304,7 +304,7 @@ rtl::Reference< Node > Data::resolvePathRepresentation( } break; case Node::KIND_SET: - if (templateName.getLength() != 0 && + if (!templateName.isEmpty() && !dynamic_cast< SetNode * >(parent.get())->isValidTemplate( templateName)) { @@ -321,8 +321,8 @@ rtl::Reference< Node > Data::resolvePathRepresentation( pathRepresentation), css::uno::Reference< css::uno::XInterface >()); } - if (templateName.getLength() != 0 && p != 0) { - assert(p->getTemplateName().getLength() != 0); + if (!templateName.isEmpty() && p != 0) { + assert(!p->getTemplateName().isEmpty()); if (!equalTemplateNames(templateName, p->getTemplateName())) { throw css::uno::RuntimeException( (rtl::OUString( diff --git a/configmgr/source/propertynode.cxx b/configmgr/source/propertynode.cxx index 5aa86db68c9f..ea95274310b8 100644 --- a/configmgr/source/propertynode.cxx +++ b/configmgr/source/propertynode.cxx @@ -69,7 +69,7 @@ bool PropertyNode::isNillable() const { } css::uno::Any PropertyNode::getValue(Components & components) { - if (externalDescriptor_.getLength() != 0) { + if (!externalDescriptor_.isEmpty()) { css::beans::Optional< css::uno::Any > val( components.getExternalValue(externalDescriptor_)); if (val.IsPresent) { diff --git a/configmgr/source/valueparser.cxx b/configmgr/source/valueparser.cxx index ab6104d25fc6..005cdae48216 100644 --- a/configmgr/source/valueparser.cxx +++ b/configmgr/source/valueparser.cxx @@ -194,7 +194,7 @@ template< typename T > css::uno::Any parseListValue( { comphelper::SequenceAsVector< T > seq; xmlreader::Span sep; - if (separator.getLength() == 0) { + if (separator.isEmpty()) { sep = xmlreader::Span(RTL_CONSTASCII_STRINGPARAM(" ")); } else { sep = xmlreader::Span(separator.getStr(), separator.getLength()); @@ -285,7 +285,7 @@ xmlreader::XmlReader::Text ValueParser::getTextMode() const { case STATE_IT: return (type_ == TYPE_STRING || type_ == TYPE_STRING_LIST || - separator_.getLength() != 0) + !separator_.isEmpty()) ? xmlreader::XmlReader::TEXT_RAW : xmlreader::XmlReader::TEXT_NORMALIZED; default: @@ -305,7 +305,7 @@ bool ValueParser::startElement( case STATE_TEXT: if (nsId == xmlreader::XmlReader::NAMESPACE_NONE && name.equals(RTL_CONSTASCII_STRINGPARAM("it")) && - isListType(type_) && separator_.getLength() == 0) + isListType(type_) && separator_.isEmpty()) { pad_.clear(); // before first <it>, characters are not ignored; assume they diff --git a/configmgr/source/writemodfile.cxx b/configmgr/source/writemodfile.cxx index 966234281c69..8683302db409 100644 --- a/configmgr/source/writemodfile.cxx +++ b/configmgr/source/writemodfile.cxx @@ -405,7 +405,7 @@ void writeNode( case Node::KIND_LOCALIZED_VALUE: { writeData(handle, RTL_CONSTASCII_STRINGPARAM("<value")); - if (name.getLength() != 0) { + if (!name.isEmpty()) { writeData(handle, RTL_CONSTASCII_STRINGPARAM(" xml:lang=\"")); writeAttributeValue(handle, name); writeData(handle, RTL_CONSTASCII_STRINGPARAM("\"")); @@ -438,7 +438,7 @@ void writeNode( case Node::KIND_SET: writeData(handle, RTL_CONSTASCII_STRINGPARAM("<node oor:name=\"")); writeAttributeValue(handle, name); - if (node->getTemplateName().getLength() != 0) { // set member + if (!node->getTemplateName().isEmpty()) { // set member writeData( handle, RTL_CONSTASCII_STRINGPARAM("\" oor:op=\"replace")); } @@ -477,7 +477,7 @@ void writeModifications( switch (parent->kind()) { case Node::KIND_LOCALIZED_PROPERTY: writeData(handle, RTL_CONSTASCII_STRINGPARAM("<value")); - if (nodeName.getLength() != 0) { + if (!nodeName.isEmpty()) { writeData( handle, RTL_CONSTASCII_STRINGPARAM(" xml:lang=\"")); writeAttributeValue(handle, nodeName); diff --git a/configmgr/source/xcdparser.cxx b/configmgr/source/xcdparser.cxx index 84c12bd8fa1c..e5c092150cd7 100644 --- a/configmgr/source/xcdparser.cxx +++ b/configmgr/source/xcdparser.cxx @@ -86,7 +86,7 @@ bool XcdParser::startElement( if (nsId == xmlreader::XmlReader::NAMESPACE_NONE && name.equals(RTL_CONSTASCII_STRINGPARAM("dependency"))) { - if (dependency_.getLength() == 0) { + if (dependency_.isEmpty()) { xmlreader::Span attrFile; for (;;) { int attrNsId; @@ -110,7 +110,7 @@ bool XcdParser::startElement( css::uno::Reference< css::uno::XInterface >()); } dependency_ = attrFile.convertFromUtf8(); - if (dependency_.getLength() == 0) { + if (dependency_.isEmpty()) { throw css::uno::RuntimeException( (rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( diff --git a/configmgr/source/xcuparser.cxx b/configmgr/source/xcuparser.cxx index db599c0d5306..6ee5c82a6795 100644 --- a/configmgr/source/xcuparser.cxx +++ b/configmgr/source/xcuparser.cxx @@ -493,7 +493,7 @@ void XcuParser::handlePropValue( attrLn.equals(RTL_CONSTASCII_STRINGPARAM("external"))) { external = reader.getAttributeValue(true).convertFromUtf8(); - if (external.getLength() == 0) { + if (external.isEmpty()) { throw css::uno::RuntimeException( (rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( @@ -512,7 +512,7 @@ void XcuParser::handlePropValue( reader.getUrl()), css::uno::Reference< css::uno::XInterface >()); } - if (external.getLength() != 0) { + if (!external.isEmpty()) { throw css::uno::RuntimeException( (rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( @@ -522,7 +522,7 @@ void XcuParser::handlePropValue( } prop->setValue(valueParser_.getLayer(), css::uno::Any()); state_.push(State(false)); - } else if (external.getLength() == 0) { + } else if (external.isEmpty()) { valueParser_.separator_ = separator; valueParser_.start(prop); } else { |