Addressed all code analysis warnings (note: Some minor breaking changes to follow naming guidelines)

This commit is contained in:
mort5161 2014-11-14 17:36:46 -08:00
parent 32b9a8b9eb
commit 9c37a40bc0
31 changed files with 347 additions and 181 deletions

View file

@ -42,7 +42,7 @@ namespace SampleApp.WinDesktop
if(args.Message is NmeaParser.Nmea.Gps.Gpgsv)
{
var gpgsv = (NmeaParser.Nmea.Gps.Gpgsv)args.Message;
if(args.IsMultiPart && args.MessageParts != null)
if(args.IsMultipart && args.MessageParts != null)
satView.GpgsvMessages = args.MessageParts.OfType<NmeaParser.Nmea.Gps.Gpgsv>();
}
});