summaryrefslogtreecommitdiff
path: root/sw/inc/lineinfo.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/lineinfo.hxx
parent1417061d1b2c110e7e690523a544b58e7ffd05c0 (diff)
sw: sal_Bool->bool
Change-Id: I324a0ffde2ddcca105451c19e7aadcfad15211d8
Diffstat (limited to 'sw/inc/lineinfo.hxx')
-rw-r--r--sw/inc/lineinfo.hxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/sw/inc/lineinfo.hxx b/sw/inc/lineinfo.hxx
index ce84f67df00c..a52a02922f34 100644
--- a/sw/inc/lineinfo.hxx
+++ b/sw/inc/lineinfo.hxx
@@ -44,10 +44,10 @@ class SW_DLLPUBLIC SwLineNumberInfo : public SwClient /**< purpose of derivation
sal_uInt16 nDividerCountBy; /**< Interval for display of an user defined
string every n lines */
LineNumberPosition ePos; ///< Where should the display occur (number and divicer)
- sal_Bool bPaintLineNumbers; ///< Should anything be displayed?
- sal_Bool bCountBlankLines; ///< Count empty lines?
- sal_Bool bCountInFlys; ///< Count also within FlyFrames?
- sal_Bool bRestartEachPage; /**< Restart counting at the first paragraph of each page
+ bool bPaintLineNumbers; ///< Should anything be displayed?
+ bool bCountBlankLines; ///< Count empty lines?
+ bool bCountInFlys; ///< Count also within FlyFrames?
+ bool bRestartEachPage; /**< Restart counting at the first paragraph of each page
(even on follows when paragraphs are splitted) */
protected:
virtual void Modify( const SfxPoolItem*, const SfxPoolItem* ) SAL_OVERRIDE;
@@ -79,17 +79,17 @@ public:
LineNumberPosition GetPos() const { return ePos; }
void SetPos( LineNumberPosition eP ){ ePos = eP; }
- sal_Bool IsPaintLineNumbers() const { return bPaintLineNumbers; }
- void SetPaintLineNumbers( sal_Bool b ){ bPaintLineNumbers = b; }
+ bool IsPaintLineNumbers() const { return bPaintLineNumbers; }
+ void SetPaintLineNumbers( bool b ){ bPaintLineNumbers = b; }
- sal_Bool IsCountBlankLines() const { return bCountBlankLines; }
- void SetCountBlankLines( sal_Bool b ) { bCountBlankLines = b; }
+ bool IsCountBlankLines() const { return bCountBlankLines; }
+ void SetCountBlankLines( bool b ) { bCountBlankLines = b; }
- sal_Bool IsCountInFlys() const { return bCountInFlys; }
- void SetCountInFlys( sal_Bool b ) { bCountInFlys = b; }
+ bool IsCountInFlys() const { return bCountInFlys; }
+ void SetCountInFlys( bool b ) { bCountInFlys = b; }
- sal_Bool IsRestartEachPage() const { return bRestartEachPage; }
- void SetRestartEachPage( sal_Bool b ) { bRestartEachPage = b; }
+ bool IsRestartEachPage() const { return bRestartEachPage; }
+ void SetRestartEachPage( bool b ) { bRestartEachPage = b; }
bool HasCharFormat() const { return GetRegisteredIn() != 0; }
};