[Libreoffice-commits] core.git: lotuswordpro/source
Jochen Nitschke
j.nitschke+logerrit at ok.de
Sun Jul 23 18:45:53 UTC 2017
lotuswordpro/source/filter/xfilter/xffontfactory.hxx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit 6b8b6f0117d7be63acf475adf8bf9b484a53062f
Author: Jochen Nitschke <j.nitschke+logerrit at ok.de>
Date: Sun Jul 23 01:40:07 2017 +0200
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 at libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>
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:
/**
More information about the Libreoffice-commits
mailing list