summaryrefslogtreecommitdiff
path: root/sw/inc/pvprtdat.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-25 14:00:35 +0200
committerNoel Grandin <noel@peralex.com>2014-04-30 08:44:42 +0200
commit6aa35db39311dcd7965c9c9c21fcf4143a1f9b43 (patch)
tree04320eaf8c7481c1b496460624ee20ec11360ac2 /sw/inc/pvprtdat.hxx
parent1417061d1b2c110e7e690523a544b58e7ffd05c0 (diff)
sw: sal_Bool->bool
Change-Id: I324a0ffde2ddcca105451c19e7aadcfad15211d8
Diffstat (limited to 'sw/inc/pvprtdat.hxx')
-rw-r--r--sw/inc/pvprtdat.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/inc/pvprtdat.hxx b/sw/inc/pvprtdat.hxx
index 06c5189bc30c..a559257d6b4d 100644
--- a/sw/inc/pvprtdat.hxx
+++ b/sw/inc/pvprtdat.hxx
@@ -27,12 +27,12 @@ class SwPagePreviewPrtData
sal_uLong nLeftSpace, nRightSpace, nTopSpace, nBottomSpace,
nHorzSpace, nVertSpace;
sal_uInt8 nRow, nCol;
- sal_Bool bLandscape : 1;
+ bool bLandscape : 1;
public:
SwPagePreviewPrtData()
: nLeftSpace(0), nRightSpace(0), nTopSpace(0), nBottomSpace(0),
nHorzSpace(0), nVertSpace(0), nRow(1), nCol(1),
- bLandscape(0)
+ bLandscape(false)
{}
sal_uLong GetLeftSpace() const { return nLeftSpace; }
@@ -60,7 +60,7 @@ public:
void SetCol( sal_uInt8 n ) { nCol = n; }
bool GetLandscape() const { return bLandscape; }
- void SetLandscape( sal_Bool b ) { bLandscape = b; }
+ void SetLandscape( bool b ) { bLandscape = b; }
};
#endif