diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-17 13:38:26 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-18 11:27:38 +0200 |
commit | ac01de882d368c4d8044361f874edd4b53e33f2b (patch) | |
tree | 50b56ce1efa549fec4b69d04ae9f1cd4ecb3ccfe /sc/source/ui/docshell/docsh4.cxx | |
parent | 399724aba4b7297a262a775d000ddf4534e38b6c (diff) |
sfx2: sal_Bool->bool
Change-Id: I87c5a180566e9da185c2992844e6522e82c17747
Diffstat (limited to 'sc/source/ui/docshell/docsh4.cxx')
-rw-r--r-- | sc/source/ui/docshell/docsh4.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/docshell/docsh4.cxx b/sc/source/ui/docshell/docsh4.cxx index c68d39486c1a..f182ab152422 100644 --- a/sc/source/ui/docshell/docsh4.cxx +++ b/sc/source/ui/docshell/docsh4.cxx @@ -946,7 +946,7 @@ void ScDocShell::Execute( SfxRequest& rReq ) EnableSharedSettings( true ); SC_MOD()->SetInSharedDocSaving( true ); - if ( !SwitchToShared( sal_True, sal_True ) ) + if ( !SwitchToShared( true, true ) ) { // TODO/LATER: what should be done in case the switch has failed? // for example in case the user has cancelled the saveAs operation @@ -1037,7 +1037,7 @@ void ScDocShell::Execute( SfxRequest& rReq ) { xCloseable->close( sal_True ); - if ( !SwitchToShared( false, sal_True ) ) + if ( !SwitchToShared( false, true ) ) { // TODO/LATER: what should be done in case the switch has failed? // for example in case the user has cancelled the saveAs operation |