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

loplugin:stringconstant

Change-Id: Ibead5179a353e7698d649bf20d0f7d13d4641136
üst 38e24f1d
......@@ -2278,8 +2278,8 @@ void SwUiWriterTest::testTdf89714()
uno::Reference<uno::XInterface> xInterface(xFact->createInstance("com.sun.star.text.Defaults"), uno::UNO_QUERY);
uno::Reference<beans::XPropertyState> xPropState(xInterface, uno::UNO_QUERY);
//enabled Paragraph Orphan and Widows by default starting in LO5.1
CPPUNIT_ASSERT_EQUAL( uno::makeAny(sal_Int8(2)), xPropState->getPropertyDefault(OUString("ParaOrphans")) );
CPPUNIT_ASSERT_EQUAL( uno::makeAny(sal_Int8(2)), xPropState->getPropertyDefault(OUString("ParaWidows")) );
CPPUNIT_ASSERT_EQUAL( uno::makeAny(sal_Int8(2)), xPropState->getPropertyDefault("ParaOrphans") );
CPPUNIT_ASSERT_EQUAL( uno::makeAny(sal_Int8(2)), xPropState->getPropertyDefault("ParaWidows") );
}
void SwUiWriterTest::testPropertyDefaults()
......
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