diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-09-13 16:44:19 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-09-14 08:29:45 +0200 |
commit | c856ae17aff5db258eb16713f56fce9f28400d47 (patch) | |
tree | 5a02c77626257837c465212e1345c65334c72e37 /vcl/headless/svpinst.cxx | |
parent | 2d2259c848b43f9f04d5bb6073c00b8ae124534a (diff) |
clang-tidy modernize-use-emplace in vcl
Change-Id: Ie0a6d105b0167431275e628935df4f4c1a36d070
Reviewed-on: https://gerrit.libreoffice.org/42259
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/headless/svpinst.cxx')
-rw-r--r-- | vcl/headless/svpinst.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/headless/svpinst.cxx b/vcl/headless/svpinst.cxx index 4ebeac8f4a3c..20d92e55c82e 100644 --- a/vcl/headless/svpinst.cxx +++ b/vcl/headless/svpinst.cxx @@ -169,7 +169,7 @@ void SvpSalInstance::PostEvent(const SalFrame* pFrame, ImplSVEvent* pData, SalEv { { osl::MutexGuard g(m_aEventGuard); - m_aUserEvents.push_back( SalUserEvent( pFrame, pData, nEvent ) ); + m_aUserEvents.emplace_back( pFrame, pData, nEvent ); } Wakeup(); } |