summaryrefslogtreecommitdiff
path: root/slideshow
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-05-19 09:20:35 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-05-19 08:33:21 +0000
commitb3ff2f450f2e20af8e8f77515ad0615106859292 (patch)
tree398bab17f6891e50dde504986a60989173c76ac4 /slideshow
parentd4d2fc24793960a07275e49706b90928b4a0c764 (diff)
loplugin:unusedmethods in slideshow to svtools
Change-Id: Icf0056e13c88d7d347e668adaeddd4ed72af85cf Reviewed-on: https://gerrit.libreoffice.org/25141 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'slideshow')
-rw-r--r--slideshow/source/engine/transitions/slidechangebase.hxx2
-rw-r--r--slideshow/source/inc/listenercontainer.hxx13
2 files changed, 0 insertions, 15 deletions
diff --git a/slideshow/source/engine/transitions/slidechangebase.hxx b/slideshow/source/engine/transitions/slidechangebase.hxx
index fbb3d6d8d7b0..13e699f8cc48 100644
--- a/slideshow/source/engine/transitions/slidechangebase.hxx
+++ b/slideshow/source/engine/transitions/slidechangebase.hxx
@@ -88,8 +88,6 @@ protected:
/// Info on a per-view basis
struct ViewEntry
{
- ViewEntry() {}
-
explicit ViewEntry( const UnoViewSharedPtr& rView ) :
mpView( rView )
{
diff --git a/slideshow/source/inc/listenercontainer.hxx b/slideshow/source/inc/listenercontainer.hxx
index 7999066bb3f5..c16fa8985b52 100644
--- a/slideshow/source/inc/listenercontainer.hxx
+++ b/slideshow/source/inc/listenercontainer.hxx
@@ -43,19 +43,6 @@ struct EmptyBase
class MutexBase
{
public:
- struct Guard : public osl::MutexGuard
- {
- explicit Guard(MutexBase const& rBase) :
- osl::MutexGuard(rBase.maMutex)
- {}
- };
- struct ClearableGuard : public osl::ClearableMutexGuard
- {
- explicit ClearableGuard(MutexBase const& rBase) :
- osl::ClearableMutexGuard(rBase.maMutex)
- {}
- };
-
mutable osl::Mutex maMutex;
};