summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwpdlvlist.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/lwpdlvlist.hxx')
-rw-r--r--lotuswordpro/source/filter/lwpdlvlist.hxx21
1 files changed, 9 insertions, 12 deletions
diff --git a/lotuswordpro/source/filter/lwpdlvlist.hxx b/lotuswordpro/source/filter/lwpdlvlist.hxx
index f84e74a7c64b..19f8ff7a5253 100644
--- a/lotuswordpro/source/filter/lwpdlvlist.hxx
+++ b/lotuswordpro/source/filter/lwpdlvlist.hxx
@@ -72,16 +72,14 @@ class LwpDLVList : public LwpObject
{
public:
LwpDLVList(LwpObjectHeader const &objHdr, LwpSvStream* pStrm);
+ LwpObjectID& GetNext() { return m_ListNext; }
+ LwpObjectID& GetPrevious() { return m_ListPrevious; }
protected:
virtual ~LwpDLVList() override {}
-
+ void Read() override;
+private:
LwpObjectID m_ListPrevious;
LwpObjectID m_ListNext;
-protected:
- void Read() override;
-public:
- LwpObjectID& GetNext() { return m_ListNext; }
- LwpObjectID& GetPrevious() { return m_ListPrevious; }
};
/**
@@ -118,14 +116,13 @@ class LwpDLNFPVList : public LwpDLNFVList
public:
LwpDLNFPVList(LwpObjectHeader const &objHdr, LwpSvStream* pStrm);
virtual ~LwpDLNFPVList() override;
-protected:
- bool m_bHasProperties;
- std::unique_ptr<LwpPropList> m_pPropList;
+ LwpPropList* GetPropList() { return m_pPropList.get(); }
protected:
void Read() override;
void ReadPropertyList(LwpObjectStream* pObjStrm);
-public:
- LwpPropList* GetPropList() { return m_pPropList.get(); }
+private:
+ bool m_bHasProperties;
+ std::unique_ptr<LwpPropList> m_pPropList;
};
/**
@@ -153,7 +150,7 @@ public:
LwpDLVListHead(){}
void Read(LwpObjectStream* pObjStrm);
LwpObjectID& GetFirst() { return m_objHead; }
-protected:
+private:
LwpObjectID m_objHead;//LwpDLVList
};