summaryrefslogtreecommitdiff
path: root/slideshow/source/engine/waitsymbol.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'slideshow/source/engine/waitsymbol.hxx')
-rw-r--r--slideshow/source/engine/waitsymbol.hxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/slideshow/source/engine/waitsymbol.hxx b/slideshow/source/engine/waitsymbol.hxx
index 7c58c6146b23..8da60e66def2 100644
--- a/slideshow/source/engine/waitsymbol.hxx
+++ b/slideshow/source/engine/waitsymbol.hxx
@@ -29,7 +29,6 @@
#include "unoview.hxx"
#include <memory>
-#include <boost/noncopyable.hpp>
#include <vector>
namespace slideshow {
@@ -39,10 +38,12 @@ class EventMultiplexer;
typedef std::shared_ptr<class WaitSymbol> WaitSymbolSharedPtr;
/// On-screen 'hour glass' for when slideshow is unresponsive
-class WaitSymbol : public ViewEventHandler,
- private ::boost::noncopyable
+class WaitSymbol : public ViewEventHandler
{
public:
+ WaitSymbol(const WaitSymbol&) = delete;
+ WaitSymbol& operator=(const WaitSymbol&) = delete;
+
static WaitSymbolSharedPtr create( const css::uno::Reference<css::rendering::XBitmap>& xBitmap,
ScreenUpdater& rScreenUpdater,
EventMultiplexer& rEventMultiplexer,