summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/bento.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/bento.hxx
parentc36daa01f444ebad799c1cc7a106f1b4bb3c3d12 (diff)
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/bento.hxx')
-rw-r--r--lotuswordpro/source/filter/bento.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/lotuswordpro/source/filter/bento.hxx b/lotuswordpro/source/filter/bento.hxx
index 90e173bfaa1a..b27f95713fef 100644
--- a/lotuswordpro/source/filter/bento.hxx
+++ b/lotuswordpro/source/filter/bento.hxx
@@ -188,11 +188,11 @@ public: // Overridden methods
sal_uLong GetSize() { return m_ulValueLength; };
protected: // Overridden methods
- virtual sal_uLong GetData( void* pData, sal_uLong nSize );
- virtual sal_uLong PutData( const void* pData, sal_uLong nSize );
- virtual sal_uLong SeekPos( sal_uLong nPos );
- virtual void SetSize( sal_uLong nSize );
- virtual void FlushData();
+ virtual sal_uLong GetData( void* pData, sal_uLong nSize ) SAL_OVERRIDE;
+ virtual sal_uLong PutData( const void* pData, sal_uLong nSize ) SAL_OVERRIDE;
+ virtual sal_uLong SeekPos( sal_uLong nPos ) SAL_OVERRIDE;
+ virtual void SetSize( sal_uLong nSize ) SAL_OVERRIDE;
+ virtual void FlushData() SAL_OVERRIDE;
private: // Data
pCBenValue cpValue;
@@ -398,7 +398,7 @@ inline pLtcBenContainer CBenValue::GetContainer()
class CBenNamedObject : public CBenObject
{
public: // Methods
- virtual bool IsNamedObject();
+ virtual bool IsNamedObject() SAL_OVERRIDE;
virtual bool IsPropertyName();
virtual bool IsTypeName();
@@ -429,7 +429,7 @@ public: // Internal methods
pCBenNamedObjectListElmt pPrevNamedObjectListElmt) :
CBenNamedObject(pContainer, ObjectID, pPrevObject, sName,
pPrevNamedObjectListElmt) { ; }
- virtual bool IsPropertyName();
+ virtual bool IsPropertyName() SAL_OVERRIDE;
};
class CBenTypeName : public CBenNamedObject
@@ -440,7 +440,7 @@ public: // Internal methods
pCBenNamedObjectListElmt pPrevNamedObjectListElmt) :
CBenNamedObject(pContainer, ObjectID, pPrevObject, sName,
pPrevNamedObjectListElmt) { ; }
- virtual bool IsTypeName();
+ virtual bool IsTypeName() SAL_OVERRIDE;
};
} // end namespace OpenStormBento