Kaydet (Commit) 918d1541 authored tarafından Caolán McNamara's avatar Caolán McNamara

fix fractured indent

Change-Id: I7c7f951b352ed2e9ef7604a5be324223f21e96dd
üst 79b9cd76
...@@ -351,7 +351,7 @@ void SfxApplication::MiscExec_Impl( SfxRequest& rReq ) ...@@ -351,7 +351,7 @@ void SfxApplication::MiscExec_Impl( SfxRequest& rReq )
RID_SVXDLG_CUSTOMIZE, RID_SVXDLG_CUSTOMIZE,
NULL, &aSet, xFrame ); NULL, &aSet, xFrame );
if ( pDlg ) if ( pDlg )
{ {
const short nRet = pDlg->Execute(); const short nRet = pDlg->Execute();
...@@ -528,13 +528,13 @@ void SfxApplication::MiscExec_Impl( SfxRequest& rReq ) ...@@ -528,13 +528,13 @@ void SfxApplication::MiscExec_Impl( SfxRequest& rReq )
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
case SID_ABOUT: case SID_ABOUT:
{ {
SfxAbstractDialogFactory* pFact = SfxAbstractDialogFactory::Create(); SfxAbstractDialogFactory* pFact = SfxAbstractDialogFactory::Create();
if ( pFact ) if ( pFact )
{ {
VclAbstractDialog* pDlg = pFact->CreateVclDialog( 0, RID_DEFAULTABOUT ); VclAbstractDialog* pDlg = pFact->CreateVclDialog( 0, RID_DEFAULTABOUT );
pDlg->Execute(); pDlg->Execute();
delete pDlg; delete pDlg;
bDone = true; bDone = true;
} }
break; break;
} }
...@@ -1039,8 +1039,8 @@ void SfxApplication::OfaExec_Impl( SfxRequest& rReq ) ...@@ -1039,8 +1039,8 @@ void SfxApplication::OfaExec_Impl( SfxRequest& rReq )
{ {
VclAbstractDialog* pDlg = VclAbstractDialog* pDlg =
pFact->CreateFrameDialog( NULL, xFrame, rReq.GetSlot(), sPageURL ); pFact->CreateFrameDialog( NULL, xFrame, rReq.GetSlot(), sPageURL );
short nRet = pDlg->Execute(); short nRet = pDlg->Execute();
delete pDlg; delete pDlg;
SfxViewFrame* pView = SfxViewFrame::GetFirst(); SfxViewFrame* pView = SfxViewFrame::GetFirst();
while ( pView ) while ( pView )
{ {
...@@ -1315,9 +1315,9 @@ void SfxApplication::OfaExec_Impl( SfxRequest& rReq ) ...@@ -1315,9 +1315,9 @@ void SfxApplication::OfaExec_Impl( SfxRequest& rReq )
if ( pSet && pSet->GetItemState( pSetPool->GetWhich( SID_AUTO_CORRECT_DLG ), sal_False, &pItem ) == SFX_ITEM_SET ) if ( pSet && pSet->GetItemState( pSetPool->GetWhich( SID_AUTO_CORRECT_DLG ), sal_False, &pItem ) == SFX_ITEM_SET )
aSet.Put( *pItem ); aSet.Put( *pItem );
SfxAbstractTabDialog* pDlg = pFact->CreateTabDialog( RID_OFA_AUTOCORR_DLG, NULL, &aSet, NULL ); SfxAbstractTabDialog* pDlg = pFact->CreateTabDialog( RID_OFA_AUTOCORR_DLG, NULL, &aSet, NULL );
pDlg->Execute(); pDlg->Execute();
delete pDlg; delete pDlg;
} }
break; break;
......
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