summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/docxexportfilter.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/filter/ww8/docxexportfilter.hxx')
-rw-r--r--sw/source/filter/ww8/docxexportfilter.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sw/source/filter/ww8/docxexportfilter.hxx b/sw/source/filter/ww8/docxexportfilter.hxx
index c1a86da85e12..582903a60412 100644
--- a/sw/source/filter/ww8/docxexportfilter.hxx
+++ b/sw/source/filter/ww8/docxexportfilter.hxx
@@ -34,22 +34,22 @@ public:
// FIXME these should not even exist for the export-only filter!
// For now, let's just do empty implementations of those.
- virtual bool importDocument() { return false; }
- virtual const ::oox::drawingml::Theme* getCurrentTheme() const { return NULL; }
+ virtual bool importDocument() SAL_OVERRIDE { return false; }
+ virtual const ::oox::drawingml::Theme* getCurrentTheme() const SAL_OVERRIDE { return NULL; }
virtual sal_Int32 getSchemeClr( sal_Int32 ) const { return 0; }
- virtual ::oox::vml::Drawing* getVmlDrawing() { return NULL; }
- virtual ::oox::drawingml::chart::ChartConverter* getChartConverter() { return NULL; }
- virtual const ::oox::drawingml::table::TableStyleListPtr getTableStyles() { return ::oox::drawingml::table::TableStyleListPtr(); }
+ virtual ::oox::vml::Drawing* getVmlDrawing() SAL_OVERRIDE { return NULL; }
+ virtual ::oox::drawingml::chart::ChartConverter* getChartConverter() SAL_OVERRIDE { return NULL; }
+ virtual const ::oox::drawingml::table::TableStyleListPtr getTableStyles() SAL_OVERRIDE { return ::oox::drawingml::table::TableStyleListPtr(); }
// Actual export of the DOCX document
- virtual bool exportDocument();
+ virtual bool exportDocument() SAL_OVERRIDE;
private:
/// Implementatio of the filter abstract method.
- virtual OUString implGetImplementationName() const;
+ virtual OUString implGetImplementationName() const SAL_OVERRIDE;
- virtual ::oox::ole::VbaProject* implCreateVbaProject() const
+ virtual ::oox::ole::VbaProject* implCreateVbaProject() const SAL_OVERRIDE
{
return NULL; // FIXME: implement me !
}