summaryrefslogtreecommitdiff
path: root/include/comphelper/SelectionMultiplex.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-02-24 09:15:32 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-02-25 08:06:15 +0100
commit970ca8de0be4c4cd9485170f3c56a34b4069eec2 (patch)
tree1eb110e926d1539b729e06ab78e723f5ca19ae1c /include/comphelper/SelectionMultiplex.hxx
parent880af0672c6362b0dbdae137d92e8ebf85a7b335 (diff)
loplugin:unusedfields in various
Change-Id: I31d0e6c3559af2e322fb474b97f3bbf4d5064831 Reviewed-on: https://gerrit.libreoffice.org/68280 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/comphelper/SelectionMultiplex.hxx')
-rw-r--r--include/comphelper/SelectionMultiplex.hxx10
1 files changed, 1 insertions, 9 deletions
diff --git a/include/comphelper/SelectionMultiplex.hxx b/include/comphelper/SelectionMultiplex.hxx
index 77ed7a363636..f1a0e294d765 100644
--- a/include/comphelper/SelectionMultiplex.hxx
+++ b/include/comphelper/SelectionMultiplex.hxx
@@ -45,22 +45,14 @@ namespace comphelper
{
friend class OSelectionChangeMultiplexer;
- rtl::Reference<OSelectionChangeMultiplexer> m_xAdapter;
- ::osl::Mutex& m_rMutex;
-
public:
- OSelectionChangeListener(::osl::Mutex& _rMutex)
- : m_rMutex(_rMutex) { }
+ OSelectionChangeListener() {}
virtual ~OSelectionChangeListener();
/// @throws css::uno::RuntimeException
virtual void _selectionChanged( const css::lang::EventObject& aEvent ) = 0;
/// @throws css::uno::RuntimeException
virtual void _disposing(const css::lang::EventObject& _rSource);
-
- protected:
- // pseudo-private. Making it private now could break compatibility
- void setAdapter( OSelectionChangeMultiplexer* _pAdapter );
};