summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-26 10:14:57 +0200
committerNoel Grandin <noel@peralex.com>2014-02-27 12:30:28 +0200
commit27842247e5284242b0799588754174dc1dcb0ef6 (patch)
tree55ea1f676d3e0c3cb706e486534241ea6ddf133a /include
parent706fee2fa732d15ed60d83b82cd6de89b8f3e531 (diff)
editeng: sal_Bool->bool
Change-Id: Iede0a8ea3e28d1a77069e61c5a9b9d5bccc69adb
Diffstat (limited to 'include')
-rw-r--r--include/editeng/svxfont.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/editeng/svxfont.hxx b/include/editeng/svxfont.hxx
index cbd4d0280291..43036503be16 100644
--- a/include/editeng/svxfont.hxx
+++ b/include/editeng/svxfont.hxx
@@ -65,10 +65,10 @@ public:
inline void SetCaseMap( const SvxCaseMap eNew ) { eCaseMap = eNew; }
// Is-Methods:
- inline sal_Bool IsCaseMap() const { return SVX_CASEMAP_NOT_MAPPED != eCaseMap; }
- inline sal_Bool IsCapital() const { return SVX_CASEMAP_KAPITAELCHEN == eCaseMap; }
- inline sal_Bool IsKern() const { return 0 != nKern; }
- inline sal_Bool IsEsc() const { return 0 != nEsc; }
+ inline bool IsCaseMap() const { return SVX_CASEMAP_NOT_MAPPED != eCaseMap; }
+ inline bool IsCapital() const { return SVX_CASEMAP_KAPITAELCHEN == eCaseMap; }
+ inline bool IsKern() const { return 0 != nKern; }
+ inline bool IsEsc() const { return 0 != nEsc; }
// Consider Upper case, Lower case letters etc.
OUString CalcCaseMap(const OUString &rTxt) const;
@@ -103,7 +103,7 @@ public:
const sal_Int32 nIdx = 0, const sal_Int32 nLen = SAL_MAX_INT32 ) const;
static void DrawArrow( OutputDevice &rOut, const Rectangle& rRect,
- const Size& rSize, const Color& rCol, sal_Bool bLeft );
+ const Size& rSize, const Color& rCol, bool bLeft );
SvxFont& operator=( const SvxFont& rFont );
SvxFont& operator=( const Font& rFont );
};