summaryrefslogtreecommitdiff
path: root/sw/inc/tabcol.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/tabcol.hxx
parent1417061d1b2c110e7e690523a544b58e7ffd05c0 (diff)
sw: sal_Bool->bool
Change-Id: I324a0ffde2ddcca105451c19e7aadcfad15211d8
Diffstat (limited to 'sw/inc/tabcol.hxx')
-rw-r--r--sw/inc/tabcol.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/inc/tabcol.hxx b/sw/inc/tabcol.hxx
index b124658a68d8..d152d5da2f85 100644
--- a/sw/inc/tabcol.hxx
+++ b/sw/inc/tabcol.hxx
@@ -29,7 +29,7 @@ struct SwTabColsEntry
long nPos;
long nMin;
long nMax;
- sal_Bool bHidden; // For each entry a flag, hidden or not.
+ bool bHidden; // For each entry a flag, hidden or not.
// If the flag bHidden is sal_True column separator
// is not in current line. It must maintained
// but it may not be displayed.
@@ -64,11 +64,11 @@ public:
long operator[]( size_t nPos ) const { return aData[nPos].nPos; }
size_t Count() const { return aData.size(); }
- sal_Bool IsHidden( size_t nPos ) const { return aData[nPos].bHidden; }
- void SetHidden( size_t nPos, sal_Bool bValue ) { aData[nPos].bHidden = bValue; }
+ bool IsHidden( size_t nPos ) const { return aData[nPos].bHidden; }
+ void SetHidden( size_t nPos, bool bValue ) { aData[nPos].bHidden = bValue; }
- void Insert( long nValue, sal_Bool bValue, size_t nPos );
- void Insert( long nValue, long nMin, long nMax, sal_Bool bValue, size_t nPos );
+ void Insert( long nValue, bool bValue, size_t nPos );
+ void Insert( long nValue, long nMin, long nMax, bool bValue, size_t nPos );
void Remove( size_t nPos, size_t nAnz = 1 );
const SwTabColsEntry& GetEntry( size_t nPos ) const { return aData[nPos]; }