summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/benname.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-14 15:54:20 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-14 15:54:20 +0100
commit2da415ee45ff95e847275f6f39b808871f0afed9 (patch)
treea3d6cc0d8d1c4c0bf52358eb9204c4b085ff5a46 /lotuswordpro/source/filter/benname.cxx
parentnFlags parameter to Window::Hide appears effectively unused (diff)
downloadcore-2da415ee45ff95e847275f6f39b808871f0afed9.tar.gz
core-2da415ee45ff95e847275f6f39b808871f0afed9.zip
UtBool -> bool
Change-Id: I4cec5ba61762ac87d5bfb07b15ab661955e207ac
Diffstat (limited to 'lotuswordpro/source/filter/benname.cxx')
-rw-r--r--lotuswordpro/source/filter/benname.cxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/lotuswordpro/source/filter/benname.cxx b/lotuswordpro/source/filter/benname.cxx
index 1c346bc9936c..234b4f0aa7ab 100644
--- a/lotuswordpro/source/filter/benname.cxx
+++ b/lotuswordpro/source/filter/benname.cxx
@@ -66,20 +66,20 @@ CBenNamedObject::CBenNamedObject(pLtcBenContainer pContainer,
cNameListElmt.SetNamedObject(this);
}
-UtBool CBenNamedObject::IsNamedObject()
-{ return UT_TRUE; }
+bool CBenNamedObject::IsNamedObject()
+{ return true; }
-UtBool CBenNamedObject::IsPropertyName()
-{ return UT_FALSE; }
+bool CBenNamedObject::IsPropertyName()
+{ return false; }
-UtBool CBenNamedObject::IsTypeName()
-{ return UT_FALSE; }
+bool CBenNamedObject::IsTypeName()
+{ return false; }
-UtBool CBenPropertyName::IsPropertyName()
-{ return UT_TRUE; }
+bool CBenPropertyName::IsPropertyName()
+{ return true; }
-UtBool CBenTypeName::IsTypeName()
-{ return UT_TRUE; }
+bool CBenTypeName::IsTypeName()
+{ return true; }
} // end namespace OpenStormBento
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */