summaryrefslogtreecommitdiff
path: root/sw/source/core/text/porhyph.hxx
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@yahoo.com>2014-02-07 23:49:13 +0100
committerMatteo Casalin <matteo.casalin@yahoo.com>2014-02-08 16:54:05 +0100
commitcb0d8ba5faf75268654031fa29a809fc01978eaa (patch)
treea86bcf15e34054f3764dc3429efa5ee68a62f1ed /sw/source/core/text/porhyph.hxx
parent5c95b277c68a27d91f591b676f1846c6eda04f79 (diff)
sal_Bool to bool
Change-Id: Ia381958971bce86e3ab3eefe3445b491552e908b
Diffstat (limited to 'sw/source/core/text/porhyph.hxx')
-rw-r--r--sw/source/core/text/porhyph.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/core/text/porhyph.hxx b/sw/source/core/text/porhyph.hxx
index 32e6128c931c..5daec4a7596d 100644
--- a/sw/source/core/text/porhyph.hxx
+++ b/sw/source/core/text/porhyph.hxx
@@ -32,8 +32,8 @@ public:
{
SetWhichPor( POR_HYPH );
}
- virtual sal_Bool GetExpTxt( const SwTxtSizeInfo &rInf, OUString &rTxt ) const;
- virtual sal_Bool Format( SwTxtFormatInfo &rInf );
+ virtual bool GetExpTxt( const SwTxtSizeInfo &rInf, OUString &rTxt ) const;
+ virtual bool Format( SwTxtFormatInfo &rInf );
// Accessibility: pass information about this portion to the PortionHandler
virtual void HandlePortion( SwPortionHandler& rPH ) const;
@@ -55,7 +55,7 @@ public:
SetWhichPor( POR_HYPHSTR );
}
- virtual sal_Bool GetExpTxt( const SwTxtSizeInfo &rInf, OUString &rTxt ) const;
+ virtual bool GetExpTxt( const SwTxtSizeInfo &rInf, OUString &rTxt ) const;
// Accessibility: pass information about this portion to the PortionHandler
virtual void HandlePortion( SwPortionHandler& rPH ) const;
@@ -75,10 +75,10 @@ class SwSoftHyphPortion : public SwHyphPortion
public:
SwSoftHyphPortion();
- virtual sal_Bool GetExpTxt( const SwTxtSizeInfo &rInf, OUString &rTxt ) const;
+ virtual bool GetExpTxt( const SwTxtSizeInfo &rInf, OUString &rTxt ) const;
virtual SwLinePortion *Compress();
virtual void Paint( const SwTxtPaintInfo &rInf ) const;
- virtual sal_Bool Format( SwTxtFormatInfo &rInf );
+ virtual bool Format( SwTxtFormatInfo &rInf );
virtual void FormatEOL( SwTxtFormatInfo &rInf );
inline void SetExpand( const sal_Bool bNew ) { bExpand = bNew; }
sal_Bool IsExpand() const { return bExpand; }