diff options
Diffstat (limited to 'chart2/source/controller/inc/TimerTriggeredControllerLock.hxx')
-rw-r--r-- | chart2/source/controller/inc/TimerTriggeredControllerLock.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chart2/source/controller/inc/TimerTriggeredControllerLock.hxx b/chart2/source/controller/inc/TimerTriggeredControllerLock.hxx index c3250375791d..2eeebf0fa707 100644 --- a/chart2/source/controller/inc/TimerTriggeredControllerLock.hxx +++ b/chart2/source/controller/inc/TimerTriggeredControllerLock.hxx @@ -23,7 +23,7 @@ #include <vcl/timer.hxx> #include <com/sun/star/frame/XModel.hpp> -#include <boost/scoped_ptr.hpp> +#include <memory> namespace chart { @@ -40,7 +40,7 @@ public: private: ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel > m_xModel; - boost::scoped_ptr< ControllerLockGuardUNO > m_apControllerLockGuard; + std::unique_ptr< ControllerLockGuardUNO > m_apControllerLockGuard; AutoTimer m_aTimer; DECL_LINK_TYPED( TimerTimeout, Timer*, void ); |