summaryrefslogtreecommitdiff
path: root/sw/source/filter/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-05-28 10:54:48 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-05-29 10:06:31 +0200
commitbc86f6d3583965dd369d0ae73a5d647c43ae38e9 (patch)
tree2c352561766e28a20fc50062e1ef8a983596ce82 /sw/source/filter/inc
parentcb48b1524ca875bcd521465b7dbdbcbe4eb670ee (diff)
no need to allocate these on the heap
Change-Id: Id82625ec95720d92353804d1b503b8f71e1db91e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116365 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source/filter/inc')
-rw-r--r--sw/source/filter/inc/fltini.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/inc/fltini.hxx b/sw/source/filter/inc/fltini.hxx
index eb48d253d24a..f66ea56ebac6 100644
--- a/sw/source/filter/inc/fltini.hxx
+++ b/sw/source/filter/inc/fltini.hxx
@@ -33,7 +33,6 @@ class HTMLReader : public Reader
{
// we don't want to have the streams/storages open
virtual bool SetStrmStgPtr() override;
- virtual ErrCode Read(SwDoc&, const OUString& rBaseURL, SwPaM&, const OUString&) override;
virtual OUString GetTemplateName(SwDoc& rDoc) const override;
/// Parse FilterOptions passed to the importer.
@@ -43,6 +42,7 @@ class HTMLReader : public Reader
public:
HTMLReader();
+ virtual ErrCode Read(SwDoc&, const OUString& rBaseURL, SwPaM&, const OUString&) override;
};
class XMLReader : public Reader