summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/benobj.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-07-08 10:22:20 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-07-08 10:23:03 +0200
commit44fb7631cc03bbab655391593d248ba3875f308b (patch)
tree17b8a81fe69ba5b0c6b5e84b76c40b9fc7469585 /lotuswordpro/source/filter/benobj.cxx
parent9da4e46957bd1a69c4339eeb1d107546c400e6e3 (diff)
Avoid undefined downcasts to wrong type
...CUtList::cDummyElmt is always only of type CUtListElmt, not a derived type. Change-Id: Ibc372642e2a53c548421b5cfa7cc496986036815
Diffstat (limited to 'lotuswordpro/source/filter/benobj.cxx')
-rw-r--r--lotuswordpro/source/filter/benobj.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/benobj.cxx b/lotuswordpro/source/filter/benobj.cxx
index f9efc9056358..500fe737de42 100644
--- a/lotuswordpro/source/filter/benobj.cxx
+++ b/lotuswordpro/source/filter/benobj.cxx
@@ -66,7 +66,7 @@ CBenObject::IsNamedObject()
pCBenProperty
CBenObject::UseProperty(BenObjectID PropertyID)
{
- pCBenIDListElmt pPrev;
+ pCUtListElmt pPrev;
return (pCBenProperty) FindID(&cProperties, PropertyID, &pPrev);
}