diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-01-16 15:10:52 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-04-29 01:44:15 +0200 |
| commit | c5e0f7894019d4d45fc331f34c3fa5cbcdd2b5ca (patch) | |
| tree | e1ff34d92d4620593923a3922838b2e594b6a449 | |
| parent | d5c059a2ff9bab5c2973db6bc4860591679dd42b (diff) | |
Remove unused lambda capture.
| -rw-r--r-- | src/wx/content_menu.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/content_menu.cc b/src/wx/content_menu.cc index 6fd5f9969..7e4659479 100644 --- a/src/wx/content_menu.cc +++ b/src/wx/content_menu.cc @@ -612,7 +612,7 @@ ContentMenu::auto_crop () }); /* Update the view when something in the dialog is changed */ - _auto_crop_dialog->Changed.connect([this, update_viewer](Crop crop) { + _auto_crop_dialog->Changed.connect([update_viewer](Crop crop) { update_viewer (crop); }); } |
