summaryrefslogtreecommitdiff
path: root/sd/source/ui/dlg/dlgolbul.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/dlg/dlgolbul.cxx')
-rw-r--r--sd/source/ui/dlg/dlgolbul.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/dlg/dlgolbul.cxx b/sd/source/ui/dlg/dlgolbul.cxx
index 9a208364eff8..89ee17d726e3 100644
--- a/sd/source/ui/dlg/dlgolbul.cxx
+++ b/sd/source/ui/dlg/dlgolbul.cxx
@@ -91,7 +91,7 @@ OutlineBulletDlg::OutlineBulletDlg(
if( SfxItemState::SET != aInputSet.GetItemState(EE_PARA_NUMBULLET))
{
- const SvxNumBulletItem *pItem = NULL;
+ const SvxNumBulletItem *pItem = nullptr;
if(bOutliner)
{
SfxStyleSheetBasePool* pSSPool = pView->GetDocSh()->GetStyleSheetPool();
@@ -101,7 +101,7 @@ OutlineBulletDlg::OutlineBulletDlg(
pFirstStyleSheet->GetItemSet().GetItemState(EE_PARA_NUMBULLET, false, reinterpret_cast<const SfxPoolItem**>(&pItem));
}
- if( pItem == NULL )
+ if( pItem == nullptr )
pItem = static_cast<const SvxNumBulletItem*>( aInputSet.GetPool()->GetSecondaryPool()->GetPoolDefaultItem(EE_PARA_NUMBULLET) );
DBG_ASSERT( pItem, "No EE_PARA_NUMBULLET in Pool! [CL]" );
@@ -176,7 +176,7 @@ const SfxItemSet* OutlineBulletDlg::GetOutputItemSet() const
SfxItemSet aSet( *SfxTabDialog::GetOutputItemSet() );
pOutputSet->Put( aSet );
- const SfxPoolItem *pItem = NULL;
+ const SfxPoolItem *pItem = nullptr;
if( SfxItemState::SET == pOutputSet->GetItemState(pOutputSet->GetPool()->GetWhich(SID_ATTR_NUMBERING_RULE), false, &pItem ))
{
SdBulletMapper::MapFontsInNumRule( *static_cast<const SvxNumBulletItem*>(pItem)->GetNumRule(), *pOutputSet );