summaryrefslogtreecommitdiff
path: root/sd/source/ui/framework/module/ViewTabBarModule.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/framework/module/ViewTabBarModule.cxx')
-rw-r--r--sd/source/ui/framework/module/ViewTabBarModule.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/framework/module/ViewTabBarModule.cxx b/sd/source/ui/framework/module/ViewTabBarModule.cxx
index ca564db51c4f..cfa0b3155de5 100644
--- a/sd/source/ui/framework/module/ViewTabBarModule.cxx
+++ b/sd/source/ui/framework/module/ViewTabBarModule.cxx
@@ -68,7 +68,7 @@ ViewTabBarModule::ViewTabBarModule (
FrameworkHelper::msResourceDeactivationRequestEvent,
makeAny(ResourceDeactivationRequestEvent));
- UpdateViewTabBar(NULL);
+ UpdateViewTabBar(nullptr);
mxConfigurationController->addConfigurationChangeListener(
this,
FrameworkHelper::msResourceActivationEvent,
@@ -86,7 +86,7 @@ void SAL_CALL ViewTabBarModule::disposing()
if (mxConfigurationController.is())
mxConfigurationController->removeConfigurationChangeListener(this);
- mxConfigurationController = NULL;
+ mxConfigurationController = nullptr;
}
void SAL_CALL ViewTabBarModule::notifyConfigurationChange (
@@ -132,7 +132,7 @@ void SAL_CALL ViewTabBarModule::disposing (
&& rEvent.Source == mxConfigurationController)
{
// Without the configuration controller this class can do nothing.
- mxConfigurationController = NULL;
+ mxConfigurationController = nullptr;
disposing();
}
}