summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/benobj.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/benobj.cxx')
-rw-r--r--lotuswordpro/source/filter/benobj.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/lotuswordpro/source/filter/benobj.cxx b/lotuswordpro/source/filter/benobj.cxx
index b16c0928572f..6dfe53d21c7e 100644
--- a/lotuswordpro/source/filter/benobj.cxx
+++ b/lotuswordpro/source/filter/benobj.cxx
@@ -59,17 +59,17 @@
namespace OpenStormBento
{
-pCBenProperty
+CBenProperty *
CBenObject::UseProperty(BenObjectID PropertyID)
{
- pCUtListElmt pPrev;
- return static_cast<pCBenProperty>( FindID(&cProperties, PropertyID, &pPrev) );
+ CUtListElmt * pPrev;
+ return static_cast<CBenProperty *>( FindID(&cProperties, PropertyID, &pPrev) );
}
-pCBenValue
+CBenValue *
CBenObject::UseValue(BenObjectID PropertyID)
{
- pCBenProperty pProperty = UseProperty(PropertyID);
+ CBenProperty * pProperty = UseProperty(PropertyID);
if (pProperty == nullptr)
return nullptr;
return &pProperty->UseValue();