summaryrefslogtreecommitdiff
path: root/sw/source/core/undo/SwUndoFmt.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-10-23 18:35:04 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-10-24 09:46:07 +0900
commitcc64715977062d77ba9e3cb1c95138b0cc7639f8 (patch)
tree5c828a18330e5bc430c424091e28c59681a3aa64 /sw/source/core/undo/SwUndoFmt.cxx
parentcffdb8d6804105bc840a407a10890af556e586c9 (diff)
sal_Bool to bool
Change-Id: I47f376f431276396a9f3168a5e39e2c9e9e55cbe
Diffstat (limited to 'sw/source/core/undo/SwUndoFmt.cxx')
-rw-r--r--sw/source/core/undo/SwUndoFmt.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/core/undo/SwUndoFmt.cxx b/sw/source/core/undo/SwUndoFmt.cxx
index 3dfb373cb3d6..b2d8bab7888e 100644
--- a/sw/source/core/undo/SwUndoFmt.cxx
+++ b/sw/source/core/undo/SwUndoFmt.cxx
@@ -270,7 +270,7 @@ SwFmt * SwUndoCharFmtCreate::Create(SwFmt * pDerivedFrom)
void SwUndoCharFmtCreate::Delete()
{
- pDoc->DelCharFmt((SwCharFmt *) pNew, sal_True);
+ pDoc->DelCharFmt((SwCharFmt *) pNew, true);
}
SwFmt * SwUndoCharFmtCreate::Find(const String & rName) const
@@ -290,7 +290,7 @@ SwFmt * SwUndoCharFmtDelete::Create(SwFmt * pDerivedFrom)
void SwUndoCharFmtDelete::Delete(SwFmt * pFmt)
{
- pDoc->DelCharFmt((SwCharFmt *) pFmt, sal_True);
+ pDoc->DelCharFmt((SwCharFmt *) pFmt, true);
}
SwFmt * SwUndoCharFmtDelete::Find(const String & rName) const
@@ -325,7 +325,7 @@ SwFmt * SwUndoFrmFmtCreate::Create(SwFmt * pDerivedFrom)
void SwUndoFrmFmtCreate::Delete()
{
- pDoc->DelFrmFmt((SwFrmFmt *) pNew, sal_True);
+ pDoc->DelFrmFmt((SwFrmFmt *) pNew, true);
}
SwFmt * SwUndoFrmFmtCreate::Find(const String & rName) const
@@ -345,7 +345,7 @@ SwFmt * SwUndoFrmFmtDelete::Create(SwFmt * pDerivedFrom)
void SwUndoFrmFmtDelete::Delete(SwFmt * pFmt)
{
- pDoc->DelFrmFmt((SwFrmFmt *) pFmt, sal_True);
+ pDoc->DelFrmFmt((SwFrmFmt *) pFmt, true);
}
SwFmt * SwUndoFrmFmtDelete::Find(const String & rName) const