Fix another deprecated lambda capture

This commit is contained in:
Marek Roszko 2024-04-12 22:49:50 -04:00
parent 161cfbacd4
commit c042b51be9
1 changed files with 1 additions and 1 deletions

View File

@ -518,7 +518,7 @@ bool SIMULATOR_FRAME::LoadWorkbook( const wxString& aPath )
// Successfully loading a workbook does not count as modifying it. Clear the modified
// flag after all the EVT_WORKBOOK_MODIFIED events have been processed.
CallAfter( [=]()
CallAfter( [this]()
{
m_workbookModified = false;
} );