diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-11 11:43:35 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-11 12:50:43 +0200 |
commit | 08c40a2474405b160aab96cabe115d8437d68f8a (patch) | |
tree | d423154f9ad8e44302f8ed7ae62b5d7d3013a71f /sd/source/ui/func | |
parent | 785c4f10b87ab47b853abf947dfb21117d55cca1 (diff) |
sal_Bool->bool
Change-Id: I31fb9d5b49260fd1a8fc1312b01fd5632c97ab2e
Diffstat (limited to 'sd/source/ui/func')
-rw-r--r-- | sd/source/ui/func/fucushow.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/func/fupage.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/func/fusldlg.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/func/futempl.cxx | 10 |
4 files changed, 8 insertions, 8 deletions
diff --git a/sd/source/ui/func/fucushow.cxx b/sd/source/ui/func/fucushow.cxx index ab408e2687ad..ab1ccd41af32 100644 --- a/sd/source/ui/func/fucushow.cxx +++ b/sd/source/ui/func/fucushow.cxx @@ -65,7 +65,7 @@ void FuCustomShowDlg::DoExecute( SfxRequest& ) sal_uInt16 nRet = pDlg->Execute(); if( pDlg->IsModified() ) { - mpDoc->SetChanged( sal_True ); + mpDoc->SetChanged( true ); sd::PresentationSettings& rSettings = mpDoc->getPresentationSettings(); rSettings.mbCustomShow = pDlg->IsCustomShow(); } diff --git a/sd/source/ui/func/fupage.cxx b/sd/source/ui/func/fupage.cxx index 762c47daba9b..be5458a60499 100644 --- a/sd/source/ui/func/fupage.cxx +++ b/sd/source/ui/func/fupage.cxx @@ -453,7 +453,7 @@ const SfxItemSet* FuPage::ExecuteDialog( Window* pParent ) mpDoc->SetDefaultWritingMode( nVal == FRMDIR_HORI_RIGHT_TOP ? ::com::sun::star::text::WritingMode_RL_TB : ::com::sun::star::text::WritingMode_LR_TB ); } - mpDoc->SetChanged(sal_True); + mpDoc->SetChanged(true); // BackgroundFill of Masterpage: no hard attributes allowed SdrPage& rUsedMasterPage = mpPage->IsMasterPage() ? *mpPage : mpPage->TRG_GetMasterPage(); diff --git a/sd/source/ui/func/fusldlg.cxx b/sd/source/ui/func/fusldlg.cxx index b7fd1fc77d51..64a028a238b3 100644 --- a/sd/source/ui/func/fusldlg.cxx +++ b/sd/source/ui/func/fusldlg.cxx @@ -224,7 +224,7 @@ void FuSlideShowDlg::DoExecute( SfxRequest& ) // is something has changed, we set the modified flag if ( bValuesChanged ) - mpDoc->SetChanged( sal_True ); + mpDoc->SetChanged( true ); } delete pDlg; } diff --git a/sd/source/ui/func/futempl.cxx b/sd/source/ui/func/futempl.cxx index aec57f77a6d1..e282b7cbc577 100644 --- a/sd/source/ui/func/futempl.cxx +++ b/sd/source/ui/func/futempl.cxx @@ -207,7 +207,7 @@ void FuTemplate::DoExecute( SfxRequest& rReq ) { pSSPool->Remove( pStyleSheet ); nRetMask = sal_True; - mpDoc->SetChanged(sal_True); + mpDoc->SetChanged(true); } else { @@ -245,7 +245,7 @@ void FuTemplate::DoExecute( SfxRequest& rReq ) (pOldStyleSheet->GetFamily() == SD_STYLE_FAMILY_MASTERPAGE && mpDoc->GetDocumentType() == DOCUMENT_TYPE_DRAW) ) { mpView->SetStyleSheet( (SfxStyleSheet*) pStyleSheet); - mpDoc->SetChanged(sal_True); + mpDoc->SetChanged(true); mpViewShell->GetViewFrame()->GetBindings().Invalidate( SID_STYLE_FAMILY2 ); } } @@ -571,7 +571,7 @@ void FuTemplate::DoExecute( SfxRequest& rReq ) } } - mpDoc->SetChanged(sal_True); + mpDoc->SetChanged(true); } break; @@ -621,7 +621,7 @@ void FuTemplate::DoExecute( SfxRequest& rReq ) } ( (SfxStyleSheet*) pStyleSheet )->Broadcast( SfxSimpleHint( SFX_HINT_DATACHANGED ) ); - mpDoc->SetChanged(sal_True); + mpDoc->SetChanged(true); mpViewShell->GetViewFrame()->GetBindings().Invalidate( SID_STYLE_FAMILY2 ); } @@ -648,7 +648,7 @@ void FuTemplate::DoExecute( SfxRequest& rReq ) mpView->SetStyleSheet( (SfxStyleSheet*) pStyleSheet); ( (SfxStyleSheet*) pStyleSheet )->Broadcast( SfxSimpleHint( SFX_HINT_DATACHANGED ) ); - mpDoc->SetChanged(sal_True); + mpDoc->SetChanged(true); mpViewShell->GetViewFrame()->GetBindings().Invalidate( SID_STYLE_FAMILY2 ); } } |