Kaydet (Commit) 147efd6c authored tarafından Wang Lei's avatar Wang Lei

#i118546# CPU 100% on switched off AutoCalculate with Conditional Formatting on date values

üst aa7c1844
...@@ -633,7 +633,7 @@ void ScConditionEntry::Interpret( const ScAddress& rPos ) ...@@ -633,7 +633,7 @@ void ScConditionEntry::Interpret( const ScAddress& rPos )
if (!pEff1->IsRunning()) // keine 522 erzeugen if (!pEff1->IsRunning()) // keine 522 erzeugen
{ {
//! Changed statt Dirty abfragen !!! //! Changed statt Dirty abfragen !!!
if (pEff1->GetDirty() && !bRelRef1) if (pEff1->GetDirty() && !bRelRef1 && pDoc->GetAutoCalc())
bDirty = sal_True; bDirty = sal_True;
if (pEff1->IsValue()) if (pEff1->IsValue())
{ {
...@@ -662,7 +662,7 @@ void ScConditionEntry::Interpret( const ScAddress& rPos ) ...@@ -662,7 +662,7 @@ void ScConditionEntry::Interpret( const ScAddress& rPos )
{ {
if (!pEff2->IsRunning()) // keine 522 erzeugen if (!pEff2->IsRunning()) // keine 522 erzeugen
{ {
if (pEff2->GetDirty() && !bRelRef2) if (pEff2->GetDirty() && !bRelRef2 && pDoc->GetAutoCalc())
bDirty = sal_True; bDirty = sal_True;
if (pEff2->IsValue()) if (pEff2->IsValue())
{ {
......
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