diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-02-28 09:15:10 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-02-28 10:35:22 +0100 |
commit | 376ee49f68384cf16aec57d54506378b67ccd402 (patch) | |
tree | 9d12d74da1eb92dd882bfb1196c93620939db07c /slideshow | |
parent | 93c08ca200c12a505e00a9a5aeeff2c730d23b74 (diff) |
remove some unused typedefs
Change-Id: I7775a7d86e9641cd514e58f03d3727d2ad846120
Reviewed-on: https://gerrit.libreoffice.org/68485
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'slideshow')
-rw-r--r-- | slideshow/source/inc/animation.hxx | 2 | ||||
-rw-r--r-- | slideshow/source/inc/cursormanager.hxx | 2 | ||||
-rw-r--r-- | slideshow/source/inc/expressionnode.hxx | 2 | ||||
-rw-r--r-- | slideshow/source/inc/unoviewcontainer.hxx | 2 | ||||
-rw-r--r-- | slideshow/source/inc/vieweventhandler.hxx | 1 |
5 files changed, 0 insertions, 9 deletions
diff --git a/slideshow/source/inc/animation.hxx b/slideshow/source/inc/animation.hxx index b876db457ebb..b44d02dc36fc 100644 --- a/slideshow/source/inc/animation.hxx +++ b/slideshow/source/inc/animation.hxx @@ -80,8 +80,6 @@ namespace slideshow virtual void end() = 0; }; - typedef ::std::shared_ptr< Animation > AnimationSharedPtr; - } } diff --git a/slideshow/source/inc/cursormanager.hxx b/slideshow/source/inc/cursormanager.hxx index 2607a2633cc3..48b6ded2cd7b 100644 --- a/slideshow/source/inc/cursormanager.hxx +++ b/slideshow/source/inc/cursormanager.hxx @@ -56,8 +56,6 @@ namespace slideshow virtual void resetCursor() = 0; }; - typedef ::std::shared_ptr< CursorManager > CursorManagerSharedPtr; - } } diff --git a/slideshow/source/inc/expressionnode.hxx b/slideshow/source/inc/expressionnode.hxx index bb6aff2cba7d..9af9e1f9e202 100644 --- a/slideshow/source/inc/expressionnode.hxx +++ b/slideshow/source/inc/expressionnode.hxx @@ -53,8 +53,6 @@ namespace slideshow }; - typedef ::std::shared_ptr< AnimationFunction > AnimationFunctionSharedPtr; - /** Refinement of AnimationFunction This interface is used by the SMIL function parser, to diff --git a/slideshow/source/inc/unoviewcontainer.hxx b/slideshow/source/inc/unoviewcontainer.hxx index 9d47c8f890db..cae48c11bd1f 100644 --- a/slideshow/source/inc/unoviewcontainer.hxx +++ b/slideshow/source/inc/unoviewcontainer.hxx @@ -82,8 +82,6 @@ namespace slideshow UnoViewVector maViews; }; - typedef ::std::shared_ptr< UnoViewContainer > UnoViewContainerSharedPtr; - } } diff --git a/slideshow/source/inc/vieweventhandler.hxx b/slideshow/source/inc/vieweventhandler.hxx index 800daf9c087b..aa75acaf9f21 100644 --- a/slideshow/source/inc/vieweventhandler.hxx +++ b/slideshow/source/inc/vieweventhandler.hxx @@ -80,7 +80,6 @@ namespace slideshow virtual void viewsChanged() = 0; }; - typedef ::std::shared_ptr< ViewEventHandler > ViewEventHandlerSharedPtr; typedef ::std::weak_ptr< ViewEventHandler > ViewEventHandlerWeakPtr; } |