Kaydet (Commit) 3ec79834 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:defaultparams

Change-Id: Ifb59fc408bdbbe7edcb78f1c48dc462422f21a71
üst bc437f3b
...@@ -111,7 +111,7 @@ OutlineBulletDlg::OutlineBulletDlg( ...@@ -111,7 +111,7 @@ OutlineBulletDlg::OutlineBulletDlg(
if(bTitle && aInputSet.GetItemState(EE_PARA_NUMBULLET,true) == SfxItemState::SET ) if(bTitle && aInputSet.GetItemState(EE_PARA_NUMBULLET,true) == SfxItemState::SET )
{ {
const SvxNumBulletItem* pItem = static_cast<const SvxNumBulletItem*>( aInputSet.GetItem(EE_PARA_NUMBULLET,true) ); const SvxNumBulletItem* pItem = static_cast<const SvxNumBulletItem*>( aInputSet.GetItem(EE_PARA_NUMBULLET) );
SvxNumRule* pRule = pItem->GetNumRule(); SvxNumRule* pRule = pItem->GetNumRule();
if(pRule) if(pRule)
{ {
...@@ -186,7 +186,7 @@ const SfxItemSet* OutlineBulletDlg::GetOutputItemSet() const ...@@ -186,7 +186,7 @@ const SfxItemSet* OutlineBulletDlg::GetOutputItemSet() const
if(bTitle && pOutputSet->GetItemState(EE_PARA_NUMBULLET,true) == SfxItemState::SET ) if(bTitle && pOutputSet->GetItemState(EE_PARA_NUMBULLET,true) == SfxItemState::SET )
{ {
const SvxNumBulletItem* pBulletItem = static_cast<const SvxNumBulletItem*>(pOutputSet->GetItem(EE_PARA_NUMBULLET,true)); const SvxNumBulletItem* pBulletItem = static_cast<const SvxNumBulletItem*>(pOutputSet->GetItem(EE_PARA_NUMBULLET));
SvxNumRule* pRule = pBulletItem->GetNumRule(); SvxNumRule* pRule = pBulletItem->GetNumRule();
if(pRule) if(pRule)
pRule->SetFeatureFlag( SvxNumRuleFlags::NO_NUMBERS, false ); pRule->SetFeatureFlag( SvxNumRuleFlags::NO_NUMBERS, false );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment