[Libreoffice-commits] core.git: sc/qa

Miklos Vajna vmiklos at collabora.co.uk
Fri Aug 11 16:39:17 UTC 2017


 sc/qa/unit/parallelism.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 65edadcc76969d58a8a4e7b889d7124d3274048b
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date:   Fri Aug 11 18:35:07 2017 +0200

    CppunitTest_sc_parallelism: fix loplugin:stringconcat warning
    
    Change-Id: Ibab8db1c798312f34a5b8e0178b10c21299a5c7c

diff --git a/sc/qa/unit/parallelism.cxx b/sc/qa/unit/parallelism.cxx
index 4614827d04c8..43394468aca1 100644
--- a/sc/qa/unit/parallelism.cxx
+++ b/sc/qa/unit/parallelism.cxx
@@ -144,10 +144,10 @@ void ScParallelismTest::testSUMIFS()
     std::cerr << "A1=" << m_pDoc->GetValue(0, 0, 0) << std::endl;
 
     m_pDoc->GetFormula(5, 0, 0, sFormula);
-    std::cerr << "E1=" << "\"" << sFormula << "\"=" << m_pDoc->GetValue(5, 0, 0) << std::endl;
+    std::cerr << "E1=\"" << sFormula << "\"=" << m_pDoc->GetValue(5, 0, 0) << std::endl;
 
     m_pDoc->GetFormula(6, 0, 0, sFormula);
-    std::cerr << "F1=" << "\"" << sFormula << "\"=" << m_pDoc->GetValue(6, 0, 0) << std::endl;
+    std::cerr << "F1=\"" << sFormula << "\"=" << m_pDoc->GetValue(6, 0, 0) << std::endl;
 
     std::cerr << "      A,B,C  F  L,M" << std::endl;
     for (auto i = 1; i < 30; i++)


More information about the Libreoffice-commits mailing list