summaryrefslogtreecommitdiff
path: root/sc/source/ui/unoobj/drdefuno.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/unoobj/drdefuno.cxx')
-rw-r--r--sc/source/ui/unoobj/drdefuno.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/unoobj/drdefuno.cxx b/sc/source/ui/unoobj/drdefuno.cxx
index 8aa5ca94af51..fcfbfc3fb91e 100644
--- a/sc/source/ui/unoobj/drdefuno.cxx
+++ b/sc/source/ui/unoobj/drdefuno.cxx
@@ -24,7 +24,7 @@
using namespace ::com::sun::star;
ScDrawDefaultsObj::ScDrawDefaultsObj(ScDocShell* pDocSh) :
- SvxUnoDrawPool( NULL ),
+ SvxUnoDrawPool( nullptr ),
pDocShell( pDocSh )
{
// SvxUnoDrawPool is initialized without model,
@@ -46,13 +46,13 @@ void ScDrawDefaultsObj::Notify( SfxBroadcaster&, const SfxHint& rHint )
const SfxSimpleHint* pSimpleHint = dynamic_cast<const SfxSimpleHint*>(&rHint);
if ( pSimpleHint && pSimpleHint->GetId() == SFX_HINT_DYING )
{
- pDocShell = NULL; // document gone
+ pDocShell = nullptr; // document gone
}
}
SfxItemPool* ScDrawDefaultsObj::getModelPool( bool bReadOnly ) throw()
{
- SfxItemPool* pRet = NULL;
+ SfxItemPool* pRet = nullptr;
try
{