common: fix build (missing return)

This commit is contained in:
Mike Williams 2022-10-31 10:29:09 -04:00
parent 9eef638f0b
commit 6c43ace018
1 changed files with 2 additions and 0 deletions

View File

@ -920,6 +920,8 @@ bool WX_VIEW_CONTROLS::handleAutoPanning( const wxMouseEvent& aEvent )
} }
wxCHECK_MSG( false, false, wxT( "This line should never be reached" ) ); wxCHECK_MSG( false, false, wxT( "This line should never be reached" ) );
return false;
} }