summaryrefslogtreecommitdiff
path: root/include/comphelper/SelectionMultiplex.hxx
diff options
context:
space:
mode:
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 );
};