From 922ee9a9da62febfe38a7780b11cf0d7ea0d5685 Mon Sep 17 00:00:00 2001 From: Jochen Nitschke Date: Fri, 8 Apr 2016 14:58:51 +0200 Subject: tdf#94306 replace boost::noncopyable in d... dbaccess, desktop and drawinglayer. Replace with C++11 delete copy-constructur and copy-assignment. Nothing special, only one unused include in dbaccess/source/filter/xml/xmlfilter.cxx. Change-Id: Iebabbc658215162450d4caf08d4fb2f116c456d9 Reviewed-on: https://gerrit.libreoffice.org/23918 Tested-by: Jenkins Reviewed-by: David Tardon --- dbaccess/source/sdbtools/connection/objectnames.cxx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'dbaccess/source/sdbtools/connection') diff --git a/dbaccess/source/sdbtools/connection/objectnames.cxx b/dbaccess/source/sdbtools/connection/objectnames.cxx index f243ab4c8dd8..e6a5b4499df7 100644 --- a/dbaccess/source/sdbtools/connection/objectnames.cxx +++ b/dbaccess/source/sdbtools/connection/objectnames.cxx @@ -34,7 +34,6 @@ #include #include -#include #include namespace sdbtools @@ -233,9 +232,11 @@ namespace sdbtools }; // NameCheckFactory - class NameCheckFactory: private boost::noncopyable + class NameCheckFactory { public: + NameCheckFactory(const NameCheckFactory&) = delete; + const NameCheckFactory& operator=(const NameCheckFactory&) = delete; /** creates an INameValidation instance which can be used to check the existence of query or table names @param _rContext -- cgit