summaryrefslogtreecommitdiff
path: root/sw/inc/htmltbl.hxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-11-08 12:16:44 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-11-08 13:11:58 +0900
commit88e457dc60b7a7e5f4048e00c0418bc57537c029 (patch)
treeec2a698dea3a5356f641c45ec5ee32746cd5d207 /sw/inc/htmltbl.hxx
parentb668d3aaf5690bd067c0ed283e9492ae576117f9 (diff)
sal_Bool to bool
Change-Id: Idfbc33106b20b06c5247c50d099972305f016a51
Diffstat (limited to 'sw/inc/htmltbl.hxx')
-rw-r--r--sw/inc/htmltbl.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/inc/htmltbl.hxx b/sw/inc/htmltbl.hxx
index a3c06d2780c8..2f027e9c9297 100644
--- a/sw/inc/htmltbl.hxx
+++ b/sw/inc/htmltbl.hxx
@@ -64,12 +64,12 @@ class SwHTMLTableLayoutCnts
sal_uInt8 nPass1Done; ///< How many times has Pass 1 been called?
sal_uInt8 nWidthSet; ///< How many times has the width been set?
- sal_Bool bNoBreakTag; ///< <NOBR>-Tag over complete content.
+ bool bNoBreakTag; ///< <NOBR>-Tag over complete content.
public:
SwHTMLTableLayoutCnts( const SwStartNode* pSttNd, SwHTMLTableLayout* pTab,
- sal_Bool bNoBreakTag, SwHTMLTableLayoutCnts* pNxt );
+ bool bNoBreakTag, SwHTMLTableLayoutCnts* pNxt );
~SwHTMLTableLayoutCnts();
@@ -89,7 +89,7 @@ public:
void SetPass1Done( sal_uInt8 nRef ) { nPass1Done = nRef; }
sal_Bool IsPass1Done( sal_uInt8 nRef ) const { return nRef==nPass1Done; }
- sal_Bool HasNoBreakTag() const { return bNoBreakTag; }
+ bool HasNoBreakTag() const { return bNoBreakTag; }
};
class SwHTMLTableLayoutCell