eeschema: Fix minor compile warning

This commit is contained in:
Seth Hillbrand 2018-10-11 07:13:12 -07:00
parent 4f672f0d39
commit 92758ea4ef
1 changed files with 3 additions and 1 deletions

View File

@ -339,8 +339,10 @@ wxString FIELDS_GRID_TABLE<T>::GetValue( int aRow, int aCol )
default:
// we can't assert here because wxWidgets sometimes calls this without checking
// the column type when trying to see if there's an overflow
return wxT( "bad wxWidgets!" );
break;
}
return wxT( "bad wxWidgets!" );
}