Remove "fall through" comments from the samples

Use wxFALLTHROUGH when appropriate and just remove the useless "fall
through" comment from a "default" branch.

No real changes.
This commit is contained in:
Vadim Zeitlin
2021-09-07 19:24:30 +02:00
parent 1380b1914c
commit 50493a920f
2 changed files with 1 additions and 2 deletions

View File

@@ -2037,7 +2037,7 @@ wxString BugsGridTable::GetTypeName(int WXUNUSED(row), int col)
return wxGRID_VALUE_NUMBER;
case Col_Severity:
// fall through (TODO should be a list)
wxFALLTHROUGH;
case Col_Summary:
return wxString::Format("%s:80", wxGRID_VALUE_STRING);