diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-01-16 15:10:52 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-01-16 15:10:52 +0100 |
| commit | 045d55077aba59caba774fe22aebabdd045d99f9 (patch) | |
| tree | 40f7f26471bc56fc1ed56ac532ebd9330fffdd24 | |
| parent | c17c37ac934d4821546770d51d75e0198103ea79 (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 532c6978b..15ea10363 100644 --- a/src/wx/content_menu.cc +++ b/src/wx/content_menu.cc @@ -568,7 +568,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); }); } |
