summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/misc/dp_descriptioninfoset.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/source/deployment/misc/dp_descriptioninfoset.cxx')
-rw-r--r--desktop/source/deployment/misc/dp_descriptioninfoset.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/desktop/source/deployment/misc/dp_descriptioninfoset.cxx b/desktop/source/deployment/misc/dp_descriptioninfoset.cxx
index 470e7726393c..b1762ab7fd87 100644
--- a/desktop/source/deployment/misc/dp_descriptioninfoset.cxx
+++ b/desktop/source/deployment/misc/dp_descriptioninfoset.cxx
@@ -88,7 +88,7 @@ css::uno::Reference< css::xml::dom::XNode > EmptyNodeList::item(::sal_Int32)
OUString getNodeValue(
css::uno::Reference< css::xml::dom::XNode > const & node)
{
- assert(node.is());
+ OSL_ASSERT(node.is());
try {
return node->getNodeValue();
} catch (const css::xml::dom::DOMException & e) {
@@ -583,7 +583,7 @@ std::pair< OUString, OUString > DescriptionInfoset::getLocalizedPublisherNameAnd
} catch (const css::xml::xpath::XPathException &) {
// ignore
}
- assert(xPathName.is());
+ OSL_ASSERT(xPathName.is());
if (xPathName.is())
sPublisherName = xPathName->getNodeValue();
@@ -594,7 +594,7 @@ std::pair< OUString, OUString > DescriptionInfoset::getLocalizedPublisherNameAnd
} catch (const css::xml::xpath::XPathException &) {
// ignore
}
- assert(xURL.is());
+ OSL_ASSERT(xURL.is());
if (xURL.is())
sURL = xURL->getNodeValue();
}
@@ -711,7 +711,7 @@ css::uno::Reference<css::xml::dom::XNode>
DescriptionInfoset::matchLanguageTag(
css::uno::Reference< css::xml::dom::XNode > const & xParent, OUString const & rTag) const
{
- assert(xParent.is());
+ OSL_ASSERT(xParent.is());
css::uno::Reference<css::xml::dom::XNode> nodeMatch;
//first try exact match for lang
@@ -741,7 +741,7 @@ css::uno::Reference<css::xml::dom::XNode>
DescriptionInfoset::getChildWithDefaultLocale(css::uno::Reference< css::xml::dom::XNode >
const & xParent) const
{
- assert(xParent.is());
+ OSL_ASSERT(xParent.is());
if ( xParent->getNodeName() == "simple-license" )
{
css::uno::Reference<css::xml::dom::XNode> nodeDefault;
@@ -792,7 +792,7 @@ OUString DescriptionInfoset::getLocalizedHREFAttrFromChild(
} catch (const css::xml::xpath::XPathException &) {
// ignore
}
- assert(xURL.is());
+ OSL_ASSERT(xURL.is());
if (xURL.is())
sURL = xURL->getNodeValue();
}