diff options
Diffstat (limited to 'slideshow/source/inc/cursormanager.hxx')
-rw-r--r-- | slideshow/source/inc/cursormanager.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/slideshow/source/inc/cursormanager.hxx b/slideshow/source/inc/cursormanager.hxx index 52473508fa2e..2607a2633cc3 100644 --- a/slideshow/source/inc/cursormanager.hxx +++ b/slideshow/source/inc/cursormanager.hxx @@ -21,7 +21,7 @@ #define INCLUDED_SLIDESHOW_SOURCE_INC_CURSORMANAGER_HXX #include <sal/types.h> -#include <boost/shared_ptr.hpp> +#include <memory> /* Definition of CursorManager interface */ @@ -56,7 +56,7 @@ namespace slideshow virtual void resetCursor() = 0; }; - typedef ::boost::shared_ptr< CursorManager > CursorManagerSharedPtr; + typedef ::std::shared_ptr< CursorManager > CursorManagerSharedPtr; } } |