Merge branch 'clang-link-error-and-semicolon-warnings' of https://github.com/MaartenBent/wxWidgets

Fix clang warnings about extra semicolons and a link error.

See https://github.com/wxWidgets/wxWidgets/pull/1434
This commit is contained in:
Vadim Zeitlin
2019-07-26 17:58:27 +02:00
23 changed files with 35 additions and 35 deletions

View File

@@ -1703,7 +1703,7 @@ wxString BugsGridTable::GetTypeName(int WXUNUSED(row), int col)
{
case Col_Id:
case Col_Priority:
return wxGRID_VALUE_NUMBER;;
return wxGRID_VALUE_NUMBER;
case Col_Severity:
// fall thorugh (TODO should be a list)
@@ -2501,7 +2501,7 @@ void GridFrame::OnRenderPaint( wxPaintEvent& event )
canvas->PrepareDC( dc );
if ( !m_gridBitmap.IsOk() )
return;;
return;
wxMemoryDC memDc( m_gridBitmap );