PQ parsing using "best guess" strategy as default plus renamings

This commit is contained in:
Klaus Basan
2018-12-20 03:59:46 +01:00
committed by Mat Sutcliffe
parent 4e1835b80d
commit d89b217e9b
13 changed files with 22 additions and 22 deletions

View File

@@ -328,7 +328,7 @@ namespace BlackCore
}
else
{
const CFrequency radioFrequency = CComSystem::parseComFrequency(receiver, CPqString::SeparatorsBestGuess);
const CFrequency radioFrequency = CComSystem::parseComFrequency(receiver, CPqString::SeparatorBestGuess);
if (!radioFrequency.isNull())
{
if (CComSystem::isValidCivilAviationFrequency(radioFrequency))
@@ -383,7 +383,7 @@ namespace BlackCore
CLength os(CLength::null());
if (parser.hasPart(2))
{
os.parseFromString(parser.part(2));
os.parseFromString(parser.part(2), CPqString::SeparatorBestGuess);
}
const bool added = this->testAddAltitudeOffset(cs, os);