From 7a044db51d35748f17b05f6d80ef90ad9000ad7a Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 16 Jul 2015 13:56:37 +0200 Subject: loplugin:simplifybool Change-Id: Idb065bab0285a5db209e75e29a9f6f4d72091e8c --- test/source/sheet/xprintareas.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/source/sheet/xprintareas.cxx b/test/source/sheet/xprintareas.cxx index 5e1fb609ed10..cd470ca495d7 100644 --- a/test/source/sheet/xprintareas.cxx +++ b/test/source/sheet/xprintareas.cxx @@ -23,7 +23,7 @@ namespace apitest { uno::Reference< sheet::XPrintAreas > xPrintAreas(init(), UNO_QUERY_THROW); 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 { uno::Reference< sheet::XPrintAreas > xPrintAreas(init(), UNO_QUERY_THROW); 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... -- cgit