summaryrefslogtreecommitdiff
path: root/sd/source/ui/slidesorter/cache/SlsCacheConfiguration.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/slidesorter/cache/SlsCacheConfiguration.cxx')
-rw-r--r--sd/source/ui/slidesorter/cache/SlsCacheConfiguration.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/slidesorter/cache/SlsCacheConfiguration.cxx b/sd/source/ui/slidesorter/cache/SlsCacheConfiguration.cxx
index 7a786964c464..3f7207d754cd 100644
--- a/sd/source/ui/slidesorter/cache/SlsCacheConfiguration.cxx
+++ b/sd/source/ui/slidesorter/cache/SlsCacheConfiguration.cxx
@@ -47,12 +47,12 @@ std::shared_ptr<CacheConfiguration> CacheConfiguration::Instance()
{
SolarMutexGuard aSolarGuard;
CacheConfigSharedPtr &rInstancePtr = theInstance::get();
- if (rInstancePtr.get() == NULL)
+ if (rInstancePtr.get() == nullptr)
{
// Maybe somebody else kept a previously created instance alive.
if ( ! mpWeakInstance.expired())
rInstancePtr = std::shared_ptr<CacheConfiguration>(mpWeakInstance);
- if (rInstancePtr.get() == NULL)
+ if (rInstancePtr.get() == nullptr)
{
// We have to create a new instance.
rInstancePtr.reset(new CacheConfiguration());
@@ -121,7 +121,7 @@ Any CacheConfiguration::GetValue (const OUString& rName)
{
Any aResult;
- if (mxCacheNode != NULL)
+ if (mxCacheNode != nullptr)
{
try
{