diff options
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/lwpproplist.cxx | 5 | ||||
-rw-r--r-- | lotuswordpro/source/filter/lwpproplist.hxx | 2 |
2 files changed, 1 insertions, 6 deletions
diff --git a/lotuswordpro/source/filter/lwpproplist.cxx b/lotuswordpro/source/filter/lwpproplist.cxx index 119179e6ce73..4bf5d8c0d5b5 100644 --- a/lotuswordpro/source/filter/lwpproplist.cxx +++ b/lotuswordpro/source/filter/lwpproplist.cxx @@ -106,11 +106,6 @@ LwpPropListElement* LwpPropList::FindPropByName(const OUString& name) return nullptr; } -void LwpPropList::Read(LwpObjectStream* pObjStrm) -{ - LwpDLVListHead::Read(pObjStrm); -} - LwpPropListElement* LwpPropList::GetFirst() { return dynamic_cast<LwpPropListElement*>(LwpDLVListHead::GetFirst().obj().get()); diff --git a/lotuswordpro/source/filter/lwpproplist.hxx b/lotuswordpro/source/filter/lwpproplist.hxx index 3419ba0c6543..463c659b785c 100644 --- a/lotuswordpro/source/filter/lwpproplist.hxx +++ b/lotuswordpro/source/filter/lwpproplist.hxx @@ -86,7 +86,7 @@ class LwpPropList : public LwpDLVListHead public: LwpPropList(){} ~LwpPropList(){} - void Read(LwpObjectStream* pObjStrm); + using LwpDLVListHead::Read; LwpPropListElement* GetFirst(); OUString GetNamedProperty(const OUString& name); OUString EnumNamedProperty(OUString& name,OUString& value); |