summaryrefslogtreecommitdiff
path: root/reportdesign/source/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-05-02 08:38:50 +0200
committerNoel Grandin <noel@peralex.com>2014-05-02 08:49:23 +0200
commite23c98d713ababb72de0616831a2abe0e48387f5 (patch)
treefaf799c4dad34949c7ac50f4ddad5b1d94bb2375 /reportdesign/source/inc
parent17dcf76ef87c15b8b83465a7c29b96dc2d05cde9 (diff)
reportdesign: sal_Bool->bool
Change-Id: I7a269dbf163f4c839b6c553c7b096185fe2f8a01
Diffstat (limited to 'reportdesign/source/inc')
-rw-r--r--reportdesign/source/inc/GroupProperties.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/reportdesign/source/inc/GroupProperties.hxx b/reportdesign/source/inc/GroupProperties.hxx
index d2ec0ac1c78b..2dd5a2647564 100644
--- a/reportdesign/source/inc/GroupProperties.hxx
+++ b/reportdesign/source/inc/GroupProperties.hxx
@@ -25,10 +25,10 @@ namespace rptshared
*/
struct GroupProperties
{
- ::sal_Int32 m_nGroupInterval;
- OUString m_sExpression;
- ::sal_Int16 m_nGroupOn;
- ::sal_Int16 m_nKeepTogether;
+ sal_Int32 m_nGroupInterval;
+ OUString m_sExpression;
+ sal_Int16 m_nGroupOn;
+ sal_Int16 m_nKeepTogether;
sal_Bool m_eSortAscending;
sal_Bool m_bStartNewColumn;
sal_Bool m_bResetPageNumber;
@@ -37,9 +37,9 @@ namespace rptshared
:m_nGroupInterval(1)
,m_nGroupOn(0)
,m_nKeepTogether(0)
- ,m_eSortAscending(sal_True)
- ,m_bStartNewColumn(sal_False)
- ,m_bResetPageNumber(sal_False)
+ ,m_eSortAscending(true)
+ ,m_bStartNewColumn(false)
+ ,m_bResetPageNumber(false)
{}
};
}