summaryrefslogtreecommitdiff
path: root/sd
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 /sd
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 'sd')
-rw-r--r--sd/source/filter/eppt/epptooxml.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/filter/eppt/epptooxml.hxx b/sd/source/filter/eppt/epptooxml.hxx
index 02b96def092f..d4f2b618f25d 100644
--- a/sd/source/filter/eppt/epptooxml.hxx
+++ b/sd/source/filter/eppt/epptooxml.hxx
@@ -68,7 +68,7 @@ public:
// only needed for import, leave them empty, refactor later XmlFilterBase to export and import base?
virtual oox::vml::Drawing* getVmlDrawing() override { return nullptr; }
virtual const oox::drawingml::Theme* getCurrentTheme() const 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(); }
virtual oox::drawingml::chart::ChartConverter* getChartConverter() override { return nullptr; }
static const char* GetSideDirection( sal_uInt8 nDirection );