summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/xfilter/xfcontent.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/xfilter/xfcontent.hxx')
-rw-r--r--lotuswordpro/source/filter/xfilter/xfcontent.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/lotuswordpro/source/filter/xfilter/xfcontent.hxx b/lotuswordpro/source/filter/xfilter/xfcontent.hxx
index 599fc988db63..a0e23b6c2020 100644
--- a/lotuswordpro/source/filter/xfilter/xfcontent.hxx
+++ b/lotuswordpro/source/filter/xfilter/xfcontent.hxx
@@ -73,21 +73,21 @@ public:
/**
* @short: return the content type.
*/
- virtual enumXFContent GetContentType(){ return enumXFContentUnknown; }
+ virtual enumXFContent GetContentType() SAL_OVERRIDE { return enumXFContentUnknown; }
/**
* @short: All content except XFTextContent can have a style.
*/
- virtual void SetStyleName(const OUString& style){m_strStyleName = style;}
+ virtual void SetStyleName(const OUString& style) SAL_OVERRIDE {m_strStyleName = style;}
/**
* @short: return the style name.
*/
- virtual OUString GetStyleName(){return m_strStyleName;}
+ virtual OUString GetStyleName() SAL_OVERRIDE {return m_strStyleName;}
/**
*/
- virtual IXFContent* Clone(){return NULL;}
+ virtual IXFContent* Clone() SAL_OVERRIDE {return NULL;}
protected:
OUString m_strStyleName;