summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/docxexportfilter.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-10 10:25:48 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-10 10:31:53 +0100
commit01b49802c7cda7fd4d5ba71263cef7bc95234b89 (patch)
treeb8d92f1c6abf5ac548d0bcb0c581ebfcffd8bfac /sw/source/filter/ww8/docxexportfilter.hxx
parent6cd7bf2043146a630925a2e49336f02c802f707a (diff)
loplugin:nullptr (automatic rewrite)
Change-Id: I01e11fa956a249974e77dce9deebe79311f098d0
Diffstat (limited to 'sw/source/filter/ww8/docxexportfilter.hxx')
-rw-r--r--sw/source/filter/ww8/docxexportfilter.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/filter/ww8/docxexportfilter.hxx b/sw/source/filter/ww8/docxexportfilter.hxx
index b5ed18d3bbd9..0c4b859b8092 100644
--- a/sw/source/filter/ww8/docxexportfilter.hxx
+++ b/sw/source/filter/ww8/docxexportfilter.hxx
@@ -35,9 +35,9 @@ 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() override { return false; }
- virtual const ::oox::drawingml::Theme* getCurrentTheme() const override { return NULL; }
- virtual ::oox::vml::Drawing* getVmlDrawing() override { return NULL; }
- virtual ::oox::drawingml::chart::ChartConverter* getChartConverter() override { return NULL; }
+ 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(); }
// Actual export of the DOCX document
@@ -48,7 +48,7 @@ private:
virtual ::oox::ole::VbaProject* implCreateVbaProject() const override
{
- return NULL; // FIXME: implement me !
+ return nullptr; // FIXME: implement me !
}
};