summaryrefslogtreecommitdiff
path: root/include/svtools
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2021-12-17 22:42:53 +0200
committerAndras Timar <andras.timar@collabora.com>2022-02-14 11:25:37 +0100
commit204c348d282cfaa413ab72081c0e04f965aff12b (patch)
tree57175a0367e4ffc55225a2ec5f12ae2d3e8a7e0d /include/svtools
parent71f1d3c9304cd6051119da8d66d2367553ecf277 (diff)
use more cppu::BaseMutex
Change-Id: Iddd7438161ead93b27cf8e8058ca5b1eae3d8001 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127075 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svtools')
-rw-r--r--include/svtools/acceleratorexecute.hxx9
1 files changed, 2 insertions, 7 deletions
diff --git a/include/svtools/acceleratorexecute.hxx b/include/svtools/acceleratorexecute.hxx
index 56fb1c4c627c..f43fefe43507 100644
--- a/include/svtools/acceleratorexecute.hxx
+++ b/include/svtools/acceleratorexecute.hxx
@@ -38,12 +38,6 @@ namespace svt
{
-struct TMutexInit
-{
- ::osl::Mutex m_aLock;
-};
-
-
/**
@descr implements a helper, which can be used to
convert vcl key codes into awt key codes ...
@@ -67,10 +61,11 @@ struct TMutexInit
Of course this queue will be stopped if the environment
will be destructed...
*/
-class SVT_DLLPUBLIC AcceleratorExecute final : private TMutexInit
+class SVT_DLLPUBLIC AcceleratorExecute final
{
// member
private:
+ ::osl::Mutex m_aLock;
/** TODO document me */
css::uno::Reference< css::uno::XComponentContext > m_xContext;