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

loplugin:simplifybool

Change-Id: Idb065bab0285a5db209e75e29a9f6f4d72091e8c
üst db33fc46
...@@ -23,7 +23,7 @@ namespace apitest { ...@@ -23,7 +23,7 @@ namespace apitest {
uno::Reference< sheet::XPrintAreas > xPrintAreas(init(), UNO_QUERY_THROW); uno::Reference< sheet::XPrintAreas > xPrintAreas(init(), UNO_QUERY_THROW);
xPrintAreas->setPrintTitleColumns(sal_True); xPrintAreas->setPrintTitleColumns(sal_True);
CPPUNIT_ASSERT_MESSAGE("Wrong attribution at PrintTitleColumns", xPrintAreas->getPrintTitleColumns() == sal_True); CPPUNIT_ASSERT_MESSAGE("Wrong attribution at PrintTitleColumns", xPrintAreas->getPrintTitleColumns());
} }
...@@ -32,7 +32,7 @@ namespace apitest { ...@@ -32,7 +32,7 @@ namespace apitest {
uno::Reference< sheet::XPrintAreas > xPrintAreas(init(), UNO_QUERY_THROW); uno::Reference< sheet::XPrintAreas > xPrintAreas(init(), UNO_QUERY_THROW);
xPrintAreas->setPrintTitleRows(sal_True); xPrintAreas->setPrintTitleRows(sal_True);
CPPUNIT_ASSERT_MESSAGE("Wrong attribution at PrintTitleRows", xPrintAreas->getPrintTitleRows() == sal_True); CPPUNIT_ASSERT_MESSAGE("Wrong attribution at PrintTitleRows", xPrintAreas->getPrintTitleRows());
} }
// the rest is right now in progress... // the rest is right now in progress...
......
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