summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2013-11-17 06:44:00 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2013-11-17 07:22:43 +0900
commit5c6bbe6a23b6b746dcbb20de1360b4745b1e4679 (patch)
tree6ee815098d4e6340ec2bd7ddba3f8ee68c48102e /sw
parentc7bedbf124b4c903249ea78ba1f819e1e58d38f7 (diff)
sal_Bool to bool
Change-Id: I0b01f904f78ec1a3d1aebd2af2ae8f55588a504f
Diffstat (limited to 'sw')
-rw-r--r--sw/inc/format.hxx14
-rw-r--r--sw/inc/frmfmt.hxx4
-rw-r--r--sw/source/core/attr/format.cxx24
-rw-r--r--sw/source/core/inc/flyfrm.hxx4
-rw-r--r--sw/source/core/layout/atrfrm.cxx14
-rw-r--r--sw/source/core/layout/paintfrm.cxx12
-rw-r--r--sw/source/filter/html/htmlfldw.cxx6
7 files changed, 39 insertions, 39 deletions
diff --git a/sw/inc/format.hxx b/sw/inc/format.hxx
index abea51a88d64..a777f9f522e8 100644
--- a/sw/inc/format.hxx
+++ b/sw/inc/format.hxx
@@ -46,10 +46,10 @@ class SW_DLLPUBLIC SwFmt : public SwModify
(is not hard attribution!!!) */
sal_uInt16 nPoolHelpId; ///< HelpId for this Pool-style.
sal_uInt8 nPoolHlpFileId; ///< FilePos to Doc to these style helps.
- sal_Bool bWritten : 1; ///< TRUE: already written.
+ bool bWritten : 1; ///< TRUE: already written.
bool bAutoFmt : 1; /**< FALSE: it is a template.
default is true! */
- sal_Bool bFmtInDTOR : 1; /**< TRUE: Format becomes deleted. In order to be able
+ bool bFmtInDTOR : 1; /**< TRUE: Format becomes deleted. In order to be able
to recognize this in FmtChg-message!! */
sal_Bool bAutoUpdateFmt : 1;/**< TRUE: Set attributes of a whole paragraph
at format (UI-side!). */
@@ -101,7 +101,7 @@ public:
virtual sal_uInt16 ResetAllFmtAttr();
inline SwFmt* DerivedFrom() const { return (SwFmt*)GetRegisteredIn(); }
- inline sal_Bool IsDefault() const { return DerivedFrom() == 0; }
+ inline bool IsDefault() const { return DerivedFrom() == 0; }
inline OUString GetName() const { return aFmtName; }
void SetName( const OUString& rNewName, sal_Bool bBroadcast=sal_False );
@@ -152,7 +152,7 @@ public:
{ aSet.GetPresentation( ePres, eCoreMetric, ePresMetric, rText ); }
/// Format-ID for reading/writing:
- void ResetWritten() { bWritten = sal_False; }
+ void ResetWritten() { bWritten = false; }
/// Query / set AutoFmt-flag.
bool IsAuto() const { return bAutoFmt; }
@@ -168,7 +168,7 @@ public:
sal_Bool IsAutoUpdateFmt() const { return bAutoUpdateFmt; }
void SetAutoUpdateFmt( sal_Bool bNew = sal_True ) { bAutoUpdateFmt = bNew; }
- sal_Bool IsFmtInDTOR() const { return bFmtInDTOR; }
+ bool IsFmtInDTOR() const { return bFmtInDTOR; }
/** GetMethods: Bool indicates whether to search only in Set (FALSE)
or also in Parents.
@@ -306,7 +306,7 @@ public:
@return false, default implementation
*/
- virtual sal_Bool IsBackgroundTransparent() const;
+ virtual bool IsBackgroundTransparent() const;
/** SwFmt::IsShadowTransparent
@@ -318,7 +318,7 @@ public:
@return false, default implementation
*/
- virtual sal_Bool IsShadowTransparent() const;
+ virtual bool IsShadowTransparent() const;
};
// --------------- inline Implementations ------------------------
diff --git a/sw/inc/frmfmt.hxx b/sw/inc/frmfmt.hxx
index 29436cbe7bb9..aa86dce5da9f 100644
--- a/sw/inc/frmfmt.hxx
+++ b/sw/inc/frmfmt.hxx
@@ -191,7 +191,7 @@ public:
@return true, if background color is transparent, but not "no fill"
or a existing background graphic is transparent.
*/
- virtual sal_Bool IsBackgroundTransparent() const;
+ virtual bool IsBackgroundTransparent() const;
/** SwFlyFrmFmt::IsBackgroundBrushInherited
@@ -204,7 +204,7 @@ public:
@return true, if background brush is "inherited" from parent/grandparent
*/
- sal_Bool IsBackgroundBrushInherited() const;
+ bool IsBackgroundBrushInherited() const;
const Point & GetLastFlyFrmPrtRectPos() const { return m_aLastFlyFrmPrtRectPos; }
void SetLastFlyFrmPrtRectPos( const Point &rPoint ) { m_aLastFlyFrmPrtRectPos = rPoint; }
diff --git a/sw/source/core/attr/format.cxx b/sw/source/core/attr/format.cxx
index d94f2d7a5451..f7747e387561 100644
--- a/sw/source/core/attr/format.cxx
+++ b/sw/source/core/attr/format.cxx
@@ -43,9 +43,9 @@ SwFmt::SwFmt( SwAttrPool& rPool, const sal_Char* pFmtNm,
nPoolHelpId( USHRT_MAX ),
nPoolHlpFileId( UCHAR_MAX )
{
- bWritten = bFmtInDTOR = bAutoUpdateFmt = sal_False; // LAYER_IMPL
- bAutoFmt = sal_True;
- bHidden = false;
+ bAutoUpdateFmt = sal_False; // LAYER_IMPL
+ bAutoFmt = true;
+ bWritten = bFmtInDTOR = bHidden = false;
if( pDrvdFrm )
aSet.SetParent( &pDrvdFrm->aSet );
@@ -62,9 +62,9 @@ SwFmt::SwFmt( SwAttrPool& rPool, const OUString& rFmtNm,
nPoolHelpId( USHRT_MAX ),
nPoolHlpFileId( UCHAR_MAX )
{
- bWritten = bFmtInDTOR = bAutoUpdateFmt = sal_False; // LAYER_IMPL
- bAutoFmt = sal_True;
- bHidden = false;
+ bAutoUpdateFmt = sal_False; // LAYER_IMPL
+ bAutoFmt = true;
+ bWritten = bFmtInDTOR = bHidden = false;
if( pDrvdFrm )
aSet.SetParent( &pDrvdFrm->aSet );
@@ -79,7 +79,7 @@ SwFmt::SwFmt( const SwFmt& rFmt )
nPoolHelpId( rFmt.GetPoolHelpId() ),
nPoolHlpFileId( rFmt.GetPoolHlpFileId() )
{
- bWritten = bFmtInDTOR = sal_False; // LAYER_IMPL
+ bWritten = bFmtInDTOR = false; // LAYER_IMPL
bAutoFmt = rFmt.bAutoFmt;
bHidden = rFmt.bHidden;
bAutoUpdateFmt = rFmt.bAutoUpdateFmt;
@@ -219,7 +219,7 @@ SwFmt::~SwFmt()
{
OSL_ENSURE( DerivedFrom(), "SwFmt::~SwFmt: Def dependents!" );
- bFmtInDTOR = sal_True;
+ bFmtInDTOR = true;
SwFmt* pParentFmt = DerivedFrom();
if( !pParentFmt )
@@ -577,9 +577,9 @@ void SwFmt::DelDiffs( const SfxItemSet& rSet )
@return false, default implementation
*/
-sal_Bool SwFmt::IsBackgroundTransparent() const
+bool SwFmt::IsBackgroundTransparent() const
{
- return sal_False;
+ return false;
}
/** SwFmt::IsShadowTransparent
@@ -590,9 +590,9 @@ sal_Bool SwFmt::IsBackgroundTransparent() const
@return false, default implementation
*/
-sal_Bool SwFmt::IsShadowTransparent() const
+bool SwFmt::IsShadowTransparent() const
{
- return sal_False;
+ return false;
}
/*
diff --git a/sw/source/core/inc/flyfrm.hxx b/sw/source/core/inc/flyfrm.hxx
index 5d94e6a1041c..615784668377 100644
--- a/sw/source/core/inc/flyfrm.hxx
+++ b/sw/source/core/inc/flyfrm.hxx
@@ -237,7 +237,7 @@ public:
@return true, if background color is transparent or a existing background
graphic is transparent.
*/
- sal_Bool IsBackgroundTransparent() const;
+ bool IsBackgroundTransparent() const;
/** SwFlyFrm::IsShadowTransparent
@@ -247,7 +247,7 @@ public:
@return true, if shadow color is transparent.
*/
- sal_Bool IsShadowTransparent() const;
+ bool IsShadowTransparent() const;
void Chain( SwFrm* _pAnchor );
void Unchain();
diff --git a/sw/source/core/layout/atrfrm.cxx b/sw/source/core/layout/atrfrm.cxx
index 9da51399d6bc..4f482c556c44 100644
--- a/sw/source/core/layout/atrfrm.cxx
+++ b/sw/source/core/layout/atrfrm.cxx
@@ -2933,9 +2933,9 @@ OUString SwFlyFrmFmt::GetObjDescription() const
@return true, if background color is transparent, but not "no fill"
or the transparency of a existing background graphic is set.
*/
-sal_Bool SwFlyFrmFmt::IsBackgroundTransparent() const
+bool SwFlyFrmFmt::IsBackgroundTransparent() const
{
- sal_Bool bReturn = sal_False;
+ bool bReturn = false;
/// NOTE: If background color is "no fill"/"auto fill" (COL_TRANSPARENT)
/// and there is no background graphic, it "inherites" the background
@@ -2944,7 +2944,7 @@ sal_Bool SwFlyFrmFmt::IsBackgroundTransparent() const
(GetBackground().GetColor() != COL_TRANSPARENT)
)
{
- bReturn = sal_True;
+ bReturn = true;
}
else
{
@@ -2954,7 +2954,7 @@ sal_Bool SwFlyFrmFmt::IsBackgroundTransparent() const
(pTmpGrf->GetAttr().GetTransparency() != 0)
)
{
- bReturn = sal_True;
+ bReturn = true;
}
}
@@ -2973,14 +2973,14 @@ sal_Bool SwFlyFrmFmt::IsBackgroundTransparent() const
@return true, if background brush is "inherited" from parent/grandparent
*/
-sal_Bool SwFlyFrmFmt::IsBackgroundBrushInherited() const
+bool SwFlyFrmFmt::IsBackgroundBrushInherited() const
{
- sal_Bool bReturn = sal_False;
+ bool bReturn = false;
if ( (GetBackground().GetColor() == COL_TRANSPARENT) &&
!(GetBackground().GetGraphicObject()) )
{
- bReturn = sal_True;
+ bReturn = true;
}
return bReturn;
diff --git a/sw/source/core/layout/paintfrm.cxx b/sw/source/core/layout/paintfrm.cxx
index 83c87aa279fe..d5ae1c877d22 100644
--- a/sw/source/core/layout/paintfrm.cxx
+++ b/sw/source/core/layout/paintfrm.cxx
@@ -3760,9 +3760,9 @@ void SwPageFrm::PaintDecorators( ) const
@return true, if background is transparent drawn.
*/
-sal_Bool SwFlyFrm::IsBackgroundTransparent() const
+bool SwFlyFrm::IsBackgroundTransparent() const
{
- sal_Bool bBackgroundTransparent = GetFmt()->IsBackgroundTransparent();
+ bool bBackgroundTransparent = GetFmt()->IsBackgroundTransparent();
if ( !bBackgroundTransparent &&
static_cast<const SwFlyFrmFmt*>(GetFmt())->IsBackgroundBrushInherited() )
{
@@ -3777,14 +3777,14 @@ sal_Bool SwFlyFrm::IsBackgroundTransparent() const
(pSectionTOXColor->GetTransparency() != 0) &&
(pSectionTOXColor->GetColor() != COL_TRANSPARENT) )
{
- bBackgroundTransparent = sal_True;
+ bBackgroundTransparent = true;
}
else if ( pBackgrdBrush )
{
if ( (pBackgrdBrush->GetColor().GetTransparency() != 0) &&
(pBackgrdBrush->GetColor() != COL_TRANSPARENT) )
{
- bBackgroundTransparent = sal_True;
+ bBackgroundTransparent = true;
}
else
{
@@ -3794,7 +3794,7 @@ sal_Bool SwFlyFrm::IsBackgroundTransparent() const
(pTmpGrf->GetAttr().GetTransparency() != 0)
)
{
- bBackgroundTransparent = sal_True;
+ bBackgroundTransparent = true;
}
}
}
@@ -3814,7 +3814,7 @@ sal_Bool SwFlyFrm::IsBackgroundTransparent() const
@return true, if shadow color is transparent.
*/
-sal_Bool SwFlyFrm::IsShadowTransparent() const
+bool SwFlyFrm::IsShadowTransparent() const
{
return GetFmt()->IsShadowTransparent();
};
diff --git a/sw/source/filter/html/htmlfldw.cxx b/sw/source/filter/html/htmlfldw.cxx
index 3554732943f2..4009363370d1 100644
--- a/sw/source/filter/html/htmlfldw.cxx
+++ b/sw/source/filter/html/htmlfldw.cxx
@@ -462,7 +462,7 @@ Writer& OutHTML_SwFmtFld( Writer& rWrt, const SfxPoolItem& rHt )
// Kommentare werden im ANSI-Zeichensetz, aber mit System-Zeilen-
// Umbruechen gesschrieben.
const OUString& rComment = pFld->GetPar2();
- sal_Bool bWritten = sal_False;
+ bool bWritten = false;
if( (rComment.getLength() >= 6 && rComment.startsWith("<") && rComment.endsWith(">") &&
rComment.copy( 1, 4 ).equalsIgnoreAsciiCase( OOO_STRING_SVTOOLS_HTML_meta) ) ||
@@ -477,7 +477,7 @@ Writer& OutHTML_SwFmtFld( Writer& rWrt, const SfxPoolItem& rHt )
OString sTmp(OUStringToOString(sComment,
((SwHTMLWriter&)rWrt).eDestEnc));
rWrt.Strm() << sTmp.getStr();
- bWritten = sal_True;
+ bWritten = true;
}
else if( rComment.getLength() >= 7 &&
rComment.endsWith(">") &&
@@ -493,7 +493,7 @@ Writer& OutHTML_SwFmtFld( Writer& rWrt, const SfxPoolItem& rHt )
OString sTmp(OUStringToOString(sComment,
((SwHTMLWriter&)rWrt).eDestEnc));
rWrt.Strm() << sTmp.getStr();
- bWritten = sal_True;
+ bWritten = true;
}
}