summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-05-01 07:17:35 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-05-03 01:32:08 +0900
commitc559bda8ea865d816cdc632c4de59f129ec46250 (patch)
tree00863a9a780fdf4882752ab75f80f14a539c5b68 /svx
parent8a6ed42b0953a8c4586c9aa5496d228a6cd9c3c9 (diff)
sal_Bool to bool
Change-Id: I18a1b214982ddcd8189dfa2eff2ec2811293b3cc
Diffstat (limited to 'svx')
-rw-r--r--svx/source/svdraw/svdotxfl.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/svdraw/svdotxfl.cxx b/svx/source/svdraw/svdotxfl.cxx
index 278a11ac8548..a83f1cca1be5 100644
--- a/svx/source/svdraw/svdotxfl.cxx
+++ b/svx/source/svdraw/svdotxfl.cxx
@@ -32,7 +32,7 @@
#include <svx/svdotext.hxx>
#include <svx/svdfield.hxx>
-static sal_Bool bInit = sal_False;
+static bool bInit = false;
// Do not remove this, it is still used in src536a!
void SdrRegisterFieldClasses()
@@ -43,7 +43,7 @@ void SdrRegisterFieldClasses()
SvxFieldItem::GetClassManager().SV_CLASS_REGISTER(SvxHeaderField);
SvxFieldItem::GetClassManager().SV_CLASS_REGISTER(SvxFooterField);
SvxFieldItem::GetClassManager().SV_CLASS_REGISTER(SvxDateTimeField);
- bInit = sal_True;
+ bInit = true;
}
}
@@ -52,7 +52,7 @@ void SdrRegisterFieldClasses()
bool SdrTextObj::CalcFieldValue(const SvxFieldItem& /*rField*/, sal_uInt16 /*nPara*/, sal_uInt16 /*nPos*/,
bool /*bEdit*/, Color*& /*rpTxtColor*/, Color*& /*rpFldColor*/, XubString& /*rRet*/) const
{
- return sal_False;
+ return false;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */