diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-10-31 14:10:33 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-10-31 14:16:54 +0000 |
commit | 918d15412980cd8e8c0bc5e2b1413907708aab1f (patch) | |
tree | 3b3e4051fdbabbe0e2ab37cdd306446da4cb1b60 /sfx2/source | |
parent | 79b9cd76f88c2b7f808aaedffb7cbd5dd5889f65 (diff) |
fix fractured indent
Change-Id: I7c7f951b352ed2e9ef7604a5be324223f21e96dd
Diffstat (limited to 'sfx2/source')
-rw-r--r-- | sfx2/source/appl/appserv.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sfx2/source/appl/appserv.cxx b/sfx2/source/appl/appserv.cxx index c008ca2286db..1fc527945668 100644 --- a/sfx2/source/appl/appserv.cxx +++ b/sfx2/source/appl/appserv.cxx @@ -351,7 +351,7 @@ void SfxApplication::MiscExec_Impl( SfxRequest& rReq ) RID_SVXDLG_CUSTOMIZE, NULL, &aSet, xFrame ); - if ( pDlg ) + if ( pDlg ) { const short nRet = pDlg->Execute(); @@ -528,13 +528,13 @@ void SfxApplication::MiscExec_Impl( SfxRequest& rReq ) // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - case SID_ABOUT: { - SfxAbstractDialogFactory* pFact = SfxAbstractDialogFactory::Create(); + SfxAbstractDialogFactory* pFact = SfxAbstractDialogFactory::Create(); if ( pFact ) { VclAbstractDialog* pDlg = pFact->CreateVclDialog( 0, RID_DEFAULTABOUT ); pDlg->Execute(); delete pDlg; - bDone = true; + bDone = true; } break; } @@ -1039,8 +1039,8 @@ void SfxApplication::OfaExec_Impl( SfxRequest& rReq ) { VclAbstractDialog* pDlg = pFact->CreateFrameDialog( NULL, xFrame, rReq.GetSlot(), sPageURL ); - short nRet = pDlg->Execute(); - delete pDlg; + short nRet = pDlg->Execute(); + delete pDlg; SfxViewFrame* pView = SfxViewFrame::GetFirst(); while ( pView ) { @@ -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 ) aSet.Put( *pItem ); - SfxAbstractTabDialog* pDlg = pFact->CreateTabDialog( RID_OFA_AUTOCORR_DLG, NULL, &aSet, NULL ); - pDlg->Execute(); - delete pDlg; + SfxAbstractTabDialog* pDlg = pFact->CreateTabDialog( RID_OFA_AUTOCORR_DLG, NULL, &aSet, NULL ); + pDlg->Execute(); + delete pDlg; } break; |