Kaydet (Commit) ea4fc480 authored tarafından Eike Rathke's avatar Eike Rathke

sal_Bool to bool

Change-Id: If15bc8ae32674a7282861663ab4f91a958320a3c
üst 299e6381
......@@ -3029,7 +3029,7 @@ ScDocShellModificator::ScDocShellModificator( ScDocShell& rDS )
ScDocument* pDoc = rDocShell.GetDocument();
bAutoCalcShellDisabled = pDoc->IsAutoCalcShellDisabled();
bIdleEnabled = pDoc->IsIdleEnabled();
pDoc->SetAutoCalcShellDisabled( sal_True );
pDoc->SetAutoCalcShellDisabled( true );
pDoc->EnableIdle(false);
}
......@@ -3050,7 +3050,7 @@ void ScDocShellModificator::SetDocumentModified()
if ( !pDoc->IsImportingXML() )
{
// AutoCalcShellDisabled temporaer restaurieren
sal_Bool bDisabled = pDoc->IsAutoCalcShellDisabled();
bool bDisabled = pDoc->IsAutoCalcShellDisabled();
pDoc->SetAutoCalcShellDisabled( bAutoCalcShellDisabled );
rDocShell.SetDocumentModified();
pDoc->SetAutoCalcShellDisabled( bDisabled );
......
......@@ -460,7 +460,7 @@ class SC_DLLPUBLIC ScDocShellModificator
{
ScDocShell& rDocShell;
ScRefreshTimerProtector aProtector;
sal_Bool bAutoCalcShellDisabled;
bool bAutoCalcShellDisabled;
bool bIdleEnabled;
// not implemented
......
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