diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-12-17 08:53:07 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-12-17 14:44:14 +0100 |
commit | c56a8280bdd605f77f0075a7f2bfa474aa2a26e5 (patch) | |
tree | 6b5982a71150da4c34be72d13b3514b7863d0bd8 /fpicker | |
parent | 0574f8241acbe07c87a014fb0c8f12d2f3a8b785 (diff) |
Resolve deprecated implicit capture of *this by reference in C++20
...as flagged with -Werror=deprecated by trunk GCC in -std=c++2a mode. But
C++17 forbids "this" in combination with a capture-default of "=", so in such
cases list any entities explicitly that shall be captured by value.
Change-Id: Ic228cd20682277a0f93e3e75798356d0fbbb80d4
Reviewed-on: https://gerrit.libreoffice.org/65241
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/office/OfficeFilePicker.cxx | 2 | ||||
-rw-r--r-- | fpicker/source/office/OfficeFolderPicker.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/fpicker/source/office/OfficeFilePicker.cxx b/fpicker/source/office/OfficeFilePicker.cxx index 0651b70eb1c0..a1a23de36db7 100644 --- a/fpicker/source/office/OfficeFilePicker.cxx +++ b/fpicker/source/office/OfficeFilePicker.cxx @@ -503,7 +503,7 @@ void SAL_CALL SvtFilePicker::startExecuteModal( const Reference< css::ui::dialog prepareExecute(); SvtFileDialog_Base* pDialog = getDialog(); pDialog->EnableAutocompletion(); - pDialog->StartExecuteAsync([=](sal_Int32 nResult){ + pDialog->StartExecuteAsync([this](sal_Int32 nResult){ DialogClosedHdl(nResult); }); } diff --git a/fpicker/source/office/OfficeFolderPicker.cxx b/fpicker/source/office/OfficeFolderPicker.cxx index 06703055fb4b..b95f0f972980 100644 --- a/fpicker/source/office/OfficeFolderPicker.cxx +++ b/fpicker/source/office/OfficeFolderPicker.cxx @@ -65,7 +65,7 @@ void SAL_CALL SvtFolderPicker::startExecuteModal( const Reference< css::ui::dial prepareExecute(); SvtFileDialog_Base* pDialog = getDialog(); pDialog->EnableAutocompletion(); - pDialog->StartExecuteAsync([=](sal_Int32 nResult){ + pDialog->StartExecuteAsync([this](sal_Int32 nResult){ DialogClosedHdl(nResult); }); } |