summaryrefslogtreecommitdiff
path: root/sdext
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-11-13 10:42:09 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-11-14 10:15:05 +0100
commite537c807fbfbcbfb707c6bb49da2dcc5ea839920 (patch)
treee5439ed2267d4b514cf139c13bf05d66a4678eae /sdext
parentba3783467c400eac564bd61ce790f5f6fe8203b6 (diff)
-Werror,-Wunused-member-function
SimpleView had been unused since its inception in b561e658ebed8cfcfd18dc90bd25de9134341fb3 "INTEGRATION: CWS presenterview." Change-Id: Ieb3af55c4cfebd24fe229c847f38ca108ae3401e
Diffstat (limited to 'sdext')
-rw-r--r--sdext/source/presenter/PresenterViewFactory.cxx22
1 files changed, 0 insertions, 22 deletions
diff --git a/sdext/source/presenter/PresenterViewFactory.cxx b/sdext/source/presenter/PresenterViewFactory.cxx
index 1e24207166fe..f3315ba79cbf 100644
--- a/sdext/source/presenter/PresenterViewFactory.cxx
+++ b/sdext/source/presenter/PresenterViewFactory.cxx
@@ -57,30 +57,8 @@ const OUString PresenterViewFactory::msSlideSorterURL(
const OUString PresenterViewFactory::msHelpViewURL(
"private:resource/view/Presenter/Help");
-//===== SimpleView ============================================================
-
namespace {
-typedef ::cppu::WeakComponentImplHelper1 <XView> SimpleViewInterfaceBase;
-
-class SimpleView
- : private ::cppu::BaseMutex,
- public SimpleViewInterfaceBase
-{
-public:
- SimpleView (const Reference<XResourceId>& rxViewId)
- : SimpleViewInterfaceBase(m_aMutex),mxResourceId(rxViewId) {};
- virtual ~SimpleView (void) {};
-
- // XView
-
- virtual Reference<XResourceId> SAL_CALL getResourceId (void) throw (RuntimeException)
- { return mxResourceId; };
-
-private:
- Reference<XResourceId> mxResourceId;
-};
-
/** By default the PresenterSlidePreview shows the preview of the current
slide. This adapter class makes it display the preview of the next
slide.