diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2021-06-28 15:54:51 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2021-06-28 16:57:42 +0200 |
commit | 2cc76ffcbe1f11f3b10a1a86b00f51e5ef179ac3 (patch) | |
tree | 8d134986c549ae7a2b78e394fb2db03c62aefb28 /vcl/source | |
parent | 936298c38b6f7007097700e5862db00da89d0334 (diff) |
Remove dubious lone mutex lock
...introduced with 70f89e6b9f89177fc60f9cc9b55a87fdc5c6017f "uitest: move the
processing of actions into the idle handler", for no apparent reason. (This
change will allow to get rid of mMutex as a member of UIObjectUnoObj in a later
commit.)
Change-Id: I1964eb1c4a1b4f790e689e55d4af8a0390cb4d5d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/118024
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/uitest/uno/uiobject_uno.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/vcl/source/uitest/uno/uiobject_uno.cxx b/vcl/source/uitest/uno/uiobject_uno.cxx index fe7a3d9901d7..fd75b892d0c4 100644 --- a/vcl/source/uitest/uno/uiobject_uno.cxx +++ b/vcl/source/uitest/uno/uiobject_uno.cxx @@ -29,9 +29,6 @@ UIObjectUnoObj::UIObjectUnoObj(std::unique_ptr<UIObject> pObj): UIObjectUnoObj::~UIObjectUnoObj() { - { - std::scoped_lock<std::mutex> lk3(mMutex); - } SolarMutexGuard aGuard; mpObj.reset(); } |