summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwpholder.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-27 18:12:18 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-27 18:12:18 +0100
commit567ef6d5782cdb729b49005caf6005610ce03e22 (patch)
tree7e3be1da41382e555d9091914ef7e064852a4fd4 /lotuswordpro/source/filter/lwpholder.hxx
parentIntroduce INetContentType::scan (diff)
downloadcore-567ef6d5782cdb729b49005caf6005610ce03e22.tar.gz
core-567ef6d5782cdb729b49005caf6005610ce03e22.zip
Second batch of adding SAL_OVERRIDE to overriding function declarations
...mostly done with a rewriting Clang plugin, with just some manual tweaking necessary to fix poor macro usage. Change-Id: Ie656f9d653fc716f72ac175925272696d509038f
Diffstat (limited to 'lotuswordpro/source/filter/lwpholder.hxx')
-rw-r--r--lotuswordpro/source/filter/lwpholder.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/lotuswordpro/source/filter/lwpholder.hxx b/lotuswordpro/source/filter/lwpholder.hxx
index 5e5966d8979d..714f1b75c2e8 100644
--- a/lotuswordpro/source/filter/lwpholder.hxx
+++ b/lotuswordpro/source/filter/lwpholder.hxx
@@ -76,7 +76,7 @@ class LwpDLVListHeadHolder : public LwpObject
public:
LwpDLVListHeadHolder(LwpObjectHeader& objHdr, LwpSvStream* pStrm);
~LwpDLVListHeadHolder(){}
- void Read();
+ void Read() SAL_OVERRIDE;
LwpObjectID* GetHeadID() { return &m_DLVHead;}
private:
LwpObjectID m_DLVHead;
@@ -90,7 +90,7 @@ class LwpDLVListHeadTailHolder : public LwpObject
public:
LwpDLVListHeadTailHolder(LwpObjectHeader& objHdr, LwpSvStream* pStrm);
~LwpDLVListHeadTailHolder(){}
- void Read();
+ void Read() SAL_OVERRIDE;
LwpObjectID* GetHead(){ return m_HeadTail.GetHead();}
LwpObjectID* GetTail(){ return m_HeadTail.GetTail();}
protected:
@@ -105,7 +105,7 @@ class LwpObjectHolder : public LwpDLVList
public:
LwpObjectHolder(LwpObjectHeader& objHdr, LwpSvStream* pStrm);
~LwpObjectHolder(){}
- void Read();
+ void Read() SAL_OVERRIDE;
LwpObjectID* GetObject(){return &m_Object;}
protected:
LwpObjectID m_Object;
@@ -120,7 +120,7 @@ class LwpListList : public LwpObjectHolder
public:
LwpListList(LwpObjectHeader& objHdr, LwpSvStream* pStrm);
~LwpListList(){}
- void Read();
+ void Read() SAL_OVERRIDE;
LwpObjectID* GetHead(){ return m_HeadTail.GetHead();}
LwpObjectID* GetTail(){ return m_HeadTail.GetTail();}
protected: