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

loplugin:stringconstant: elide explicit ctor usage (manually due to macros)

Change-Id: I3aa16846a9d26cca60db32bd3b6de9fec8b456c1
üst f5a3a6e0
...@@ -4621,11 +4621,11 @@ void Test::testFuncINDIRECT() ...@@ -4621,11 +4621,11 @@ void Test::testFuncINDIRECT()
void Test::testFuncINDIRECT2() void Test::testFuncINDIRECT2()
{ {
CPPUNIT_ASSERT_MESSAGE ("failed to insert sheet", CPPUNIT_ASSERT_MESSAGE ("failed to insert sheet",
m_pDoc->InsertTab (0, OUString("foo"))); m_pDoc->InsertTab (0, "foo"));
CPPUNIT_ASSERT_MESSAGE ("failed to insert sheet", CPPUNIT_ASSERT_MESSAGE ("failed to insert sheet",
m_pDoc->InsertTab (1, OUString("bar"))); m_pDoc->InsertTab (1, "bar"));
CPPUNIT_ASSERT_MESSAGE ("failed to insert sheet", CPPUNIT_ASSERT_MESSAGE ("failed to insert sheet",
m_pDoc->InsertTab (2, OUString("baz"))); m_pDoc->InsertTab (2, "baz"));
ScAddress aStart; ScAddress aStart;
ScAddress aEnd; ScAddress aEnd;
......
...@@ -865,7 +865,7 @@ void ScHTMLExport::WriteTables() ...@@ -865,7 +865,7 @@ void ScHTMLExport::WriteTables()
} }
if ( bAll ) if ( bAll )
OUT_COMMENT( OUString("**************************************************************************") ); OUT_COMMENT( "**************************************************************************" );
} }
} }
......
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