diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-09-05 15:57:37 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-09-06 09:04:17 +0200 |
commit | 03d8a9209140a68d29b7441b3588f022cfcaee7c (patch) | |
tree | 15da3ccac0bcd9913b7528535c7381eb34e1402b /uui/source | |
parent | f547cf17a179ebd7de5c2b4dd2d00d0027a25429 (diff) |
clang-tidy:readability-redundant-member-init
Change-Id: I8590d67f064dd74da42c0e3bf543f2aadbd2b893
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121693
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'uui/source')
-rw-r--r-- | uui/source/iahndl.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/uui/source/iahndl.cxx b/uui/source/iahndl.cxx index 2c6465c9e0ff..1fb003796682 100644 --- a/uui/source/iahndl.cxx +++ b/uui/source/iahndl.cxx @@ -109,8 +109,7 @@ class HandleData : public osl::Condition public: explicit HandleData( uno::Reference< task::XInteractionRequest > const & rRequest) - : osl::Condition(), - m_rRequest(rRequest), + : m_rRequest(rRequest), bHandled( false ) { } |