summaryrefslogtreecommitdiff
path: root/vbahelper
diff options
context:
space:
mode:
Diffstat (limited to 'vbahelper')
-rw-r--r--vbahelper/source/vbahelper/vbaapplicationbase.cxx6
1 files changed, 4 insertions, 2 deletions
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 <com/sun/star/document/XEmbeddedScripts.hpp>
#include <com/sun/star/awt/XWindow2.hpp>
-#include <boost/noncopyable.hpp>
#include <filter/msfilter/msvbahelper.hxx>
#include <tools/datetime.hxx>
@@ -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 );