Kaydet (Commit) 288de2f3 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

More loplugin:simplifybool

Change-Id: I40650e3f9f0aea60b5b536e2bf40735583e4358b
üst 5db2f661
......@@ -223,7 +223,7 @@ sal_Int32 FormulaHelper::GetFunctionStart( const OUString& rFormula,
if (nParPos > 0)
nParPos--;
}
else if ( (bFound = ( rFormula[nParPos] == '(' ) ) == false )
else if ( !(bFound = ( rFormula[nParPos] == '(' ) ) )
nParPos--;
}
}
......@@ -238,7 +238,7 @@ sal_Int32 FormulaHelper::GetFunctionStart( const OUString& rFormula,
nParPos++;
nParPos++;
}
else if ( (bFound = ( rFormula[nParPos] == '(' ) ) == false )
else if ( !(bFound = ( rFormula[nParPos] == '(' ) ) )
nParPos++;
}
}
......
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