From 97abbec95665b43a9a09e10a0fb31854cdbd5c0d Mon Sep 17 00:00:00 2001 From: Jochen Nitschke Date: Wed, 13 Apr 2016 10:11:37 +0200 Subject: tdf#94306 replace boost::noncopyable in stoc to xmlsec.. Replace with C++11 delete copy-constructur and copy-assignment. Remove boost/noncopyable.hpp includes. Add missing default ctors. With this commit there should be no users of boost::noncopyable left. Change-Id: I6b1e47824912a6a80cc3f00f34938ebc048d8975 Reviewed-on: https://gerrit.libreoffice.org/24051 Tested-by: Jenkins Reviewed-by: Michael Stahl --- vbahelper/source/vbahelper/vbaapplicationbase.cxx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'vbahelper') diff --git a/vbahelper/source/vbahelper/vbaapplicationbase.cxx b/vbahelper/source/vbahelper/vbaapplicationbase.cxx index 641ed887f445..0c8798daa93b 100644 --- a/vbahelper/source/vbahelper/vbaapplicationbase.cxx +++ b/vbahelper/source/vbahelper/vbaapplicationbase.cxx @@ -33,7 +33,6 @@ #include #include -#include #include #include @@ -57,7 +56,7 @@ using namespace ::ooo::vba; typedef ::std::pair< OUString, ::std::pair< double, double > > VbaTimerInfo; // ====VbaTimer================================== -class VbaTimer: private boost::noncopyable +class VbaTimer { Timer m_aTimer; VbaTimerInfo m_aTimerInfo; @@ -72,6 +71,9 @@ public: m_aTimer.Stop(); } + VbaTimer(const VbaTimer&) = delete; + VbaTimer& operator=(const VbaTimer&) = delete; + static double GetNow() { Date aDateNow( Date::SYSTEM ); -- cgit