summaryrefslogtreecommitdiff
path: root/sw/source/core/text/itratr.hxx
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@yahoo.com>2014-02-07 00:43:21 +0100
committerMatteo Casalin <matteo.casalin@yahoo.com>2014-02-08 16:54:05 +0100
commit5c95b277c68a27d91f591b676f1846c6eda04f79 (patch)
treeee45559beced34d9c72697b29cd84be8b824b5b3 /sw/source/core/text/itratr.hxx
parent1e3ef350d730bc54a3e9c393c2df6fd1f839a3a8 (diff)
sal_Bool to bool
Change-Id: Ie1306dc6b079c3d5204733470b69f45cdc96b04e
Diffstat (limited to 'sw/source/core/text/itratr.hxx')
-rw-r--r--sw/source/core/text/itratr.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/source/core/text/itratr.hxx b/sw/source/core/text/itratr.hxx
index 2a02086054eb..3edc31f45c0b 100644
--- a/sw/source/core/text/itratr.hxx
+++ b/sw/source/core/text/itratr.hxx
@@ -99,19 +99,19 @@ public:
// char position.
sal_Int32 GetNextAttr( ) const;
/// Enables the attributes used at char pos nPos in the logical font
- sal_Bool Seek( const sal_Int32 nPos );
+ bool Seek( const sal_Int32 nPos );
// Creates the font at the specified position via Seek() and checks
// if it's a symbol font.
- sal_Bool IsSymbol( const sal_Int32 nPos );
+ bool IsSymbol( const sal_Int32 nPos );
- /** Executes ChgPhysFnt if Seek() returns sal_True
+ /** Executes ChgPhysFnt if Seek() returns true
* and change font to merge character border with neighbours.
**/
- sal_Bool SeekAndChgAttrIter( const sal_Int32 nPos, OutputDevice* pOut );
- sal_Bool SeekStartAndChgAttrIter( OutputDevice* pOut, const sal_Bool bParaFont = sal_False );
+ bool SeekAndChgAttrIter( const sal_Int32 nPos, OutputDevice* pOut );
+ bool SeekStartAndChgAttrIter( OutputDevice* pOut, const bool bParaFont = false );
// Do we have an attribute change at all?
- sal_Bool HasHints() const { return 0 != pHints; }
+ bool HasHints() const { return 0 != pHints; }
// Returns the attribute for a position
SwTxtAttr *GetAttr( const sal_Int32 nPos ) const;