summaryrefslogtreecommitdiff
path: root/comphelper/source/misc/instancelocker.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'comphelper/source/misc/instancelocker.hxx')
-rw-r--r--comphelper/source/misc/instancelocker.hxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/comphelper/source/misc/instancelocker.hxx b/comphelper/source/misc/instancelocker.hxx
index a188e6e4614e..6a050c7f437c 100644
--- a/comphelper/source/misc/instancelocker.hxx
+++ b/comphelper/source/misc/instancelocker.hxx
@@ -28,7 +28,6 @@
#include <cppuhelper/weakref.hxx>
#include <cppuhelper/implbase.hxx>
#include <rtl/ref.hxx>
-#include <memory>
#include <mutex>
namespace com::sun::star::embed { class XActionsApproval; }
@@ -74,7 +73,7 @@ public:
class OLockListener : public ::cppu::WeakImplHelper< css::util::XCloseListener,
css::frame::XTerminateListener >
{
- ::osl::Mutex m_aMutex;
+ std::mutex m_aMutex;
css::uno::Reference< css::uno::XInterface > m_xInstance;
css::uno::Reference< css::embed::XActionsApproval > m_xApproval;
@@ -86,10 +85,10 @@ class OLockListener : public ::cppu::WeakImplHelper< css::util::XCloseListener,
sal_Int32 m_nMode;
public:
- OLockListener( const css::uno::WeakReference< css::lang::XComponent >& xWrapper,
- const css::uno::Reference< css::uno::XInterface >& xInstance,
+ OLockListener( css::uno::WeakReference< css::lang::XComponent > xWrapper,
+ css::uno::Reference< css::uno::XInterface > xInstance,
sal_Int32 nMode,
- const css::uno::Reference< css::embed::XActionsApproval >& rApproval );
+ css::uno::Reference< css::embed::XActionsApproval > xApproval );
virtual ~OLockListener() override;