summaryrefslogtreecommitdiff
path: root/sd/source/ui/framework/configuration/ResourceId.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/framework/configuration/ResourceId.cxx')
-rw-r--r--sd/source/ui/framework/configuration/ResourceId.cxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/sd/source/ui/framework/configuration/ResourceId.cxx b/sd/source/ui/framework/configuration/ResourceId.cxx
index 71461c57d6d1..96d348c3429e 100644
--- a/sd/source/ui/framework/configuration/ResourceId.cxx
+++ b/sd/source/ui/framework/configuration/ResourceId.cxx
@@ -121,7 +121,7 @@ util::URL SAL_CALL
ResourceId::getFullResourceURL()
throw(css::uno::RuntimeException, std::exception)
{
- if (mpURL.get() != NULL)
+ if (mpURL.get() != nullptr)
return *mpURL;
Reference<util::XURLTransformer> xURLTransformer (mxURLTransformerWeak);
@@ -215,11 +215,11 @@ sal_Int16 SAL_CALL
}
else
{
- ResourceId* pId = NULL;
+ ResourceId* pId = nullptr;
#ifdef USE_OPTIMIZATIONS
pId = dynamic_cast<ResourceId*>(rxResourceId.get());
#endif
- if (pId != NULL)
+ if (pId != nullptr)
{
// We have direct access to the implementation of the given
// resource id object.
@@ -332,14 +332,14 @@ sal_Bool SAL_CALL
if ( ! rxResourceId.is())
{
// An empty reference is interpreted as empty resource id.
- return IsBoundToAnchor(NULL, NULL, eMode);
+ return IsBoundToAnchor(nullptr, nullptr, eMode);
}
- ResourceId* pId = NULL;
+ ResourceId* pId = nullptr;
#ifdef USE_OPTIMIZATIONS
pId = dynamic_cast<ResourceId*>(rxResourceId.get());
#endif
- if (pId != NULL)
+ if (pId != nullptr)
{
return IsBoundToAnchor(pId->maResourceURLs, eMode);
}
@@ -357,7 +357,7 @@ sal_Bool SAL_CALL
AnchorBindingMode eMode)
throw (RuntimeException, std::exception)
{
- return IsBoundToAnchor(&rsAnchorURL, NULL, eMode);
+ return IsBoundToAnchor(&rsAnchorURL, nullptr, eMode);
}
Reference<XResourceId> SAL_CALL
@@ -428,9 +428,9 @@ bool ResourceId::IsBoundToAnchor (
AnchorBindingMode eMode) const
{
const sal_uInt32 nLocalAnchorURLCount (maResourceURLs.size() - 1);
- const bool bHasFirstAnchorURL (psFirstAnchorURL!=NULL);
+ const bool bHasFirstAnchorURL (psFirstAnchorURL!=nullptr);
const sal_uInt32 nAnchorURLCount ((bHasFirstAnchorURL?1:0)
- + (paAnchorURLs!=NULL ? paAnchorURLs->getLength() : 0));
+ + (paAnchorURLs!=nullptr ? paAnchorURLs->getLength() : 0));
// Check the lengths.
if (nLocalAnchorURLCount<nAnchorURLCount ||
@@ -442,7 +442,7 @@ bool ResourceId::IsBoundToAnchor (
// Compare the nAnchorURLCount bottom-most anchor URLs of this resource
// id and the given anchor.
sal_uInt32 nOffset = 0;
- if (paAnchorURLs != NULL)
+ if (paAnchorURLs != nullptr)
{
sal_uInt32 nCount = paAnchorURLs->getLength();
while (nOffset < nCount)