Kaydet (Commit) 43c8ca3f authored tarafından Stephan Bergmann's avatar Stephan Bergmann

sccomp: Use appropriate OUString functions on string constants

Change-Id: Ie8495d9da8d3e7c69d12ce3b4d19d3b864cdf818
üst 108bab2b
......@@ -58,7 +58,7 @@ void SAL_CALL CoinMPSolver::solve() throw(uno::RuntimeException, std::exception)
if ( !xModel.is() )
throw uno::RuntimeException();
maStatus = "";
maStatus.clear();
mbSuccess = false;
xModel->lockControllers();
......
......@@ -90,7 +90,7 @@ void SAL_CALL LpsolveSolver::solve() throw(uno::RuntimeException, std::exception
if ( !xModel.is() )
throw uno::RuntimeException();
maStatus = "";
maStatus.clear();
mbSuccess = false;
if ( mnEpsilonLevel < EPS_TIGHT || mnEpsilonLevel > EPS_BAGGY )
......
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