diff options
Diffstat (limited to 'sc/source/ui/docshell')
-rw-r--r-- | sc/source/ui/docshell/docsh.cxx | 6 | ||||
-rw-r--r-- | sc/source/ui/docshell/docsh3.cxx | 10 | ||||
-rw-r--r-- | sc/source/ui/docshell/docsh4.cxx | 8 |
3 files changed, 12 insertions, 12 deletions
diff --git a/sc/source/ui/docshell/docsh.cxx b/sc/source/ui/docshell/docsh.cxx index e7cdf57d2cd7..39838ffaad82 100644 --- a/sc/source/ui/docshell/docsh.cxx +++ b/sc/source/ui/docshell/docsh.cxx @@ -884,8 +884,8 @@ void ScDocShell::Notify( SfxBroadcaster&, const SfxHint& rHint ) if ( bChangedViewSettings ) { - pChangeViewSet->SetShowChanges( sal_True ); - pChangeViewSet->SetShowAccepted( sal_True ); + pChangeViewSet->SetShowChanges( true ); + pChangeViewSet->SetShowAccepted( true ); aDocument.SetChangeViewSettings( *pChangeViewSet ); } } @@ -3137,7 +3137,7 @@ void ScDocShell::SetChangeRecording( bool bActivate ) { aDocument.StartChangeTracking(); ScChangeViewSettings aChangeViewSet; - aChangeViewSet.SetShowChanges(sal_True); + aChangeViewSet.SetShowChanges(true); aDocument.SetChangeViewSettings(aChangeViewSet); } else diff --git a/sc/source/ui/docshell/docsh3.cxx b/sc/source/ui/docshell/docsh3.cxx index ad2806d94c1c..b744b624f23a 100644 --- a/sc/source/ui/docshell/docsh3.cxx +++ b/sc/source/ui/docshell/docsh3.cxx @@ -803,7 +803,7 @@ void ScDocShell::MergeDocument( ScDocument& rOtherDoc, bool bShared, bool bCheck { // visuelles RedLining einschalten ScChangeViewSettings aChangeViewSet; - aChangeViewSet.SetShowChanges(sal_True); + aChangeViewSet.SetShowChanges(true); aDocument.SetChangeViewSettings(aChangeViewSet); } } @@ -1293,8 +1293,8 @@ bool ScDocShell::MergeSharedDocument( ScDocShell* pSharedDocShell ) nEndShared = pThisTrack->GetActionMax(); // only show changes from shared document - aChangeViewSet.SetShowChanges( sal_True ); - aChangeViewSet.SetShowAccepted( sal_True ); + aChangeViewSet.SetShowChanges( true ); + aChangeViewSet.SetShowAccepted( true ); aChangeViewSet.SetHasActionRange( true ); aChangeViewSet.SetTheActionRange( nStartShared, nEndShared ); aDocument.SetChangeViewSettings( aChangeViewSet ); @@ -1337,8 +1337,8 @@ bool ScDocShell::MergeSharedDocument( ScDocShell* pSharedDocShell ) sal_uLong nEndShared = pThisTrack->GetActionMax(); // only show changes from shared document - aChangeViewSet.SetShowChanges( sal_True ); - aChangeViewSet.SetShowAccepted( sal_True ); + aChangeViewSet.SetShowChanges( true ); + aChangeViewSet.SetShowAccepted( true ); aChangeViewSet.SetHasActionRange( true ); aChangeViewSet.SetTheActionRange( nStartShared, nEndShared ); aDocument.SetChangeViewSettings( aChangeViewSet ); diff --git a/sc/source/ui/docshell/docsh4.cxx b/sc/source/ui/docshell/docsh4.cxx index eeb9e03dd3b4..db9f38c43c12 100644 --- a/sc/source/ui/docshell/docsh4.cxx +++ b/sc/source/ui/docshell/docsh4.cxx @@ -607,7 +607,7 @@ void ScDocShell::Execute( SfxRequest& rReq ) { pDoc->StartChangeTracking(); ScChangeViewSettings aChangeViewSet; - aChangeViewSet.SetShowChanges(sal_True); + aChangeViewSet.SetShowChanges(true); pDoc->SetChangeViewSettings(aChangeViewSet); } @@ -778,7 +778,7 @@ void ScDocShell::Execute( SfxRequest& rReq ) if ( !pOldSet || !pOldSet->ShowChanges() ) { ScChangeViewSettings aChangeViewSet; - aChangeViewSet.SetShowChanges(sal_True); + aChangeViewSet.SetShowChanges(true); aDocument.SetChangeViewSettings(aChangeViewSet); } } @@ -790,8 +790,8 @@ void ScDocShell::Execute( SfxRequest& rReq ) { // only show changes from merged document ScChangeViewSettings aChangeViewSet; - aChangeViewSet.SetShowChanges( sal_True ); - aChangeViewSet.SetShowAccepted( sal_True ); + aChangeViewSet.SetShowChanges( true ); + aChangeViewSet.SetShowAccepted( true ); aChangeViewSet.SetHasActionRange( true ); aChangeViewSet.SetTheActionRange( nStart, nEnd ); aDocument.SetChangeViewSettings( aChangeViewSet ); |