diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-01-14 19:58:35 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-01-14 19:58:35 +0100 |
commit | 95bf4e560ac0a28f84133ceabc677887e7b7935e (patch) | |
tree | eebd14673ff19da1c68b8d7354994e293f4b2d5b /extensions/source | |
parent | 5dab4b5ec357ad3cee412f2604c8b2f5f0f8237c (diff) |
-Werror,-Wunused-lambda-capture
Change-Id: I0ceabed1f89b6b641d5282fa1c32719bf3ead19c
Diffstat (limited to 'extensions/source')
-rw-r--r-- | extensions/source/propctrlr/standardcontrol.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/propctrlr/standardcontrol.cxx b/extensions/source/propctrlr/standardcontrol.cxx index af15abfb508e..e14086e66ab6 100644 --- a/extensions/source/propctrlr/standardcontrol.cxx +++ b/extensions/source/propctrlr/standardcontrol.cxx @@ -463,7 +463,7 @@ namespace pcr { ActionEvent aEvent( *this, OUString( "clicked" ) ); m_aActionListeners.forEach< XActionListener >( - [this, &aEvent] (uno::Reference<awt::XActionListener> const& xListener) + [&aEvent] (uno::Reference<awt::XActionListener> const& xListener) { return xListener->actionPerformed(aEvent); }); } |