summaryrefslogtreecommitdiffstats
path: root/sw/inc
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-09-25 11:39:07 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-09-25 11:53:57 +0900
commit38b29bbc39efc74f4c6086378df7b9cc31440390 (patch)
treed0e9e27103cb9f3c6e1a0ad3f2493b1ff23b7d14 /sw/inc
parentuse intrinsict to inline InterlockCount() on Windows too (diff)
downloadcore-38b29bbc39efc74f4c6086378df7b9cc31440390.tar.gz
core-38b29bbc39efc74f4c6086378df7b9cc31440390.zip
sal_Bool to bool
Change-Id: Ib9a6f3ecbe38cdad6e28b4d8a9ae13d1f5bc4265
Diffstat (limited to 'sw/inc')
-rw-r--r--sw/inc/hintids.hxx2
-rw-r--r--sw/inc/tabcol.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/hintids.hxx b/sw/inc/hintids.hxx
index 9ea4bc4ca16f..46204f116078 100644
--- a/sw/inc/hintids.hxx
+++ b/sw/inc/hintids.hxx
@@ -469,7 +469,7 @@ extern sal_uInt16 aCharAutoFmtSetRange[];
extern sal_uInt16 aPgFrmFmtSetRange[];
// check if ID is InRange of AttrSet-Ids
-sal_Bool IsInRange( const sal_uInt16* pRange, const sal_uInt16 nId );
+bool IsInRange( const sal_uInt16* pRange, const sal_uInt16 nId );
#endif
diff --git a/sw/inc/tabcol.hxx b/sw/inc/tabcol.hxx
index 6b896a6f2e3f..9457d8f35645 100644
--- a/sw/inc/tabcol.hxx
+++ b/sw/inc/tabcol.hxx
@@ -68,7 +68,7 @@ public:
SwTabCols( sal_uInt16 nSize = 0 );
SwTabCols( const SwTabCols& );
SwTabCols &operator=( const SwTabCols& );
- sal_Bool operator==( const SwTabCols& rCmp ) const;
+ bool operator==( const SwTabCols& rCmp ) const;
long& operator[]( sal_uInt16 nPos ) { return aData[nPos].nPos; }
long operator[]( sal_uInt16 nPos ) const { return aData[nPos].nPos; }
sal_uInt16 Count() const { return sal::static_int_cast< sal_uInt16 >(aData.size()); }