summaryrefslogtreecommitdiff
path: root/test/source/sheet/xprintareas.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-20 17:20:22 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-20 17:27:27 +0200
commitc838f2ed9f14e79c68adbf004f20513855e6edd3 (patch)
tree890c0c6ae7e5e5c19e1cf5648a52ae74776cc627 /test/source/sheet/xprintareas.cxx
parent2c6840eb95eb925be78f2b5279594ef5c71c2e98 (diff)
loplugin:salbool: Automatic rewrite of sal_False/True
Change-Id: Ie66903c2aae5535a507e1549b58d892b80237842
Diffstat (limited to 'test/source/sheet/xprintareas.cxx')
-rw-r--r--test/source/sheet/xprintareas.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/source/sheet/xprintareas.cxx b/test/source/sheet/xprintareas.cxx
index cd470ca495d7..776d502fd6cc 100644
--- a/test/source/sheet/xprintareas.cxx
+++ b/test/source/sheet/xprintareas.cxx
@@ -21,7 +21,7 @@ namespace apitest {
void XPrintAreas::testSetAndGetPrintTitleColumns()
{
uno::Reference< sheet::XPrintAreas > xPrintAreas(init(), UNO_QUERY_THROW);
- xPrintAreas->setPrintTitleColumns(sal_True);
+ xPrintAreas->setPrintTitleColumns(true);
CPPUNIT_ASSERT_MESSAGE("Wrong attribution at PrintTitleColumns", xPrintAreas->getPrintTitleColumns());
@@ -30,7 +30,7 @@ namespace apitest {
void XPrintAreas::testSetAndGetPrintTitleRows()
{
uno::Reference< sheet::XPrintAreas > xPrintAreas(init(), UNO_QUERY_THROW);
- xPrintAreas->setPrintTitleRows(sal_True);
+ xPrintAreas->setPrintTitleRows(true);
CPPUNIT_ASSERT_MESSAGE("Wrong attribution at PrintTitleRows", xPrintAreas->getPrintTitleRows());
}