diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2017-07-23 01:40:07 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-23 20:45:00 +0200 |
commit | 6b8b6f0117d7be63acf475adf8bf9b484a53062f (patch) | |
tree | 4b3d894d0ba9f3a6534b47979fb5623db1df8ae7 | |
parent | 5924ac060d320b38133f2629d07ee08c41aae368 (diff) |
lwp: delete bogus copy ctor
private member s_aFonts suggest this class should be a singleton
Change-Id: Id3381d8d006da346ba029f46cb9df131866ed4dc
Reviewed-on: https://gerrit.libreoffice.org/40328
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r-- | lotuswordpro/source/filter/xfilter/xffontfactory.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/xfilter/xffontfactory.hxx b/lotuswordpro/source/filter/xfilter/xffontfactory.hxx index fc074010afa4..d1ab37a70fd2 100644 --- a/lotuswordpro/source/filter/xfilter/xffontfactory.hxx +++ b/lotuswordpro/source/filter/xfilter/xffontfactory.hxx @@ -79,7 +79,8 @@ class XFFontFactory public: XFFontFactory(); ~XFFontFactory(); - XFFontFactory(const XFFontFactory&){} + XFFontFactory(const XFFontFactory&) = delete; +void operator=(XFFontFactory&) = delete; private: /** |