diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-25 16:41:50 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-25 16:41:50 +0200 |
commit | 9788477e3e156edf454fccefb69da173e8e9fea6 (patch) | |
tree | 6f1479022fdc3d060ed409c753f836c6ccef53a9 /reportdesign/source | |
parent | da0e5863d83249c0cc34e6d070161235ba87aed1 (diff) |
Some more sal_Bool -> bool
Change-Id: Ic36c3d707e75c541e443cc4c0b4da9625ae08ef3
Diffstat (limited to 'reportdesign/source')
-rw-r--r-- | reportdesign/source/ui/report/ReportController.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reportdesign/source/ui/report/ReportController.cxx b/reportdesign/source/ui/report/ReportController.cxx index 5d4b0a229608..8ed293d56581 100644 --- a/reportdesign/source/ui/report/ReportController.cxx +++ b/reportdesign/source/ui/report/ReportController.cxx @@ -2459,7 +2459,7 @@ void OReportController::openPageDialog(const uno::Reference<report::XSection>& _ aPageItem.SetDescName(xPageStyle->getName()); uno::Reference<beans::XPropertySet> xProp(xPageStyle,uno::UNO_QUERY_THROW); aPageItem.PutValue(xProp->getPropertyValue(PROPERTY_PAGESTYLELAYOUT),MID_PAGE_LAYOUT); - aPageItem.SetLandscape(getStyleProperty<sal_Bool>(m_xReportDefinition,PROPERTY_ISLANDSCAPE)); + aPageItem.SetLandscape(getStyleProperty<bool>(m_xReportDefinition,PROPERTY_ISLANDSCAPE)); aPageItem.SetNumType((SvxNumType)getStyleProperty<sal_Int16>(m_xReportDefinition,PROPERTY_NUMBERINGTYPE)); pDescriptor->Put(aPageItem); pDescriptor->Put(SvxBrushItem(::Color(getStyleProperty<sal_Int32>(m_xReportDefinition,PROPERTY_BACKCOLOR)),RPTUI_ID_BRUSH)); |