summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-08-23 14:59:48 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-08-23 19:34:49 +0200
commit09cd0e363d6c5b0e7b9cebc598030a7e3d397922 (patch)
tree86c5add3e30f1599618a9e355aaa41d49e394f1f /sw
parent306180ac17ad6f3edfe403fb5b79232717f8e75f (diff)
loplugin:returnconstval in oox
Change-Id: Id83744fcb90d1bf6e6fe048858f48a4944351494 Reviewed-on: https://gerrit.libreoffice.org/78013 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw')
-rw-r--r--sw/source/filter/ww8/docxexportfilter.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/docxexportfilter.hxx b/sw/source/filter/ww8/docxexportfilter.hxx
index 0efcc51c79fe..ae98c87c327c 100644
--- a/sw/source/filter/ww8/docxexportfilter.hxx
+++ b/sw/source/filter/ww8/docxexportfilter.hxx
@@ -37,7 +37,7 @@ public:
virtual const ::oox::drawingml::Theme* getCurrentTheme() const override { return nullptr; }
virtual ::oox::vml::Drawing* getVmlDrawing() override { return nullptr; }
virtual ::oox::drawingml::chart::ChartConverter* getChartConverter() override { return nullptr; }
- virtual const ::oox::drawingml::table::TableStyleListPtr getTableStyles() override { return ::oox::drawingml::table::TableStyleListPtr(); }
+ virtual ::oox::drawingml::table::TableStyleListPtr getTableStyles() override { return ::oox::drawingml::table::TableStyleListPtr(); }
// Actual export of the DOCX document
virtual bool exportDocument() override;