From 78b9537b6aca0f998f939988e6e1a56528d28baf Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 8 May 2014 11:44:15 +0200 Subject: various: sal_Bool->bool Change-Id: I30fa5227f30373f95060148f269450d2945c1bb9 --- test/source/sheet/datapilotfield.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'test/source/sheet/datapilotfield.cxx') diff --git a/test/source/sheet/datapilotfield.cxx b/test/source/sheet/datapilotfield.cxx index bf25ba89b384..1cd175a21faf 100644 --- a/test/source/sheet/datapilotfield.cxx +++ b/test/source/sheet/datapilotfield.cxx @@ -50,7 +50,7 @@ void DataPilotField::testSortInfo() && aNewSortInfoValue.Mode == aSortInfoValue.Mode && aNewSortInfoValue.IsAscending == aSortInfoValue.IsAscending); //setting HasSortInfo only makes sense for false, for true the uno implementation does nothing - sal_Bool bHasSortInfo; + bool bHasSortInfo; OUString aHasSortInfo("HasSortInfo"); xValue = xPropSet->getPropertyValue(aHasSortInfo); CPPUNIT_ASSERT( xValue >>= bHasSortInfo ); @@ -83,7 +83,7 @@ void DataPilotField::testLayoutInfo() aNewLayoutInfoValue.AddEmptyLines == aLayoutInfoValue.AddEmptyLines); //setting HasLayoutInfo only makes sense for false, tor true the uno implementation does nothing - sal_Bool bHasLayoutInfo; + bool bHasLayoutInfo; OUString aHasLayoutInfo("HasLayoutInfo"); xValue = xPropSet->getPropertyValue(aHasLayoutInfo); CPPUNIT_ASSERT( xValue >>= bHasLayoutInfo ); @@ -116,7 +116,7 @@ void DataPilotField::testAutoShowInfo() aNewAutoShowInfoValue.IsEnabled == aAutoShowInfoValue.IsEnabled); //setting HasLayoutInfo only makes sense for false, tor true the uno implementation does nothing - sal_Bool bHasAutoShowInfo; + bool bHasAutoShowInfo; OUString aHasAutoShowInfo("HasAutoShowInfo"); xValue = xPropSet->getPropertyValue(aHasAutoShowInfo); CPPUNIT_ASSERT( xValue >>= bHasAutoShowInfo ); @@ -149,7 +149,7 @@ void DataPilotField::testReference() && aReferenceValue.ReferenceItemType == aNewReferenceValue.ReferenceItemType); //setting HasReference only makes sense for false, tor true the uno implementation does nothing - sal_Bool bHasReference; + bool bHasReference; OUString aHasReference("HasReference"); xValue = xPropSet->getPropertyValue(aHasReference); CPPUNIT_ASSERT( xValue >>= bHasReference ); @@ -169,7 +169,7 @@ void DataPilotField::testIsGroupField() uno::Reference< beans::XPropertySet > xPropSet(init(),UNO_QUERY_THROW); uno::Any xValue; OUString aIsGroupField("IsGroupField"); - sal_Bool bIsGroupField; + bool bIsGroupField; xValue = xPropSet->getPropertyValue(aIsGroupField); CPPUNIT_ASSERT( xValue >>= bIsGroupField); -- cgit v1.2.3