Refactoring, renamed: convertToQString (old: stringForConvert)

This commit is contained in:
Klaus Basan
2013-07-28 03:31:04 +02:00
parent a53ea0c5fd
commit 62591a750f
25 changed files with 35 additions and 35 deletions

View File

@@ -16,9 +16,9 @@ namespace Aviation
/*
* Own implementation for streaming
*/
QString CAltitude::stringForConverter(bool /** i18n **/) const
QString CAltitude::convertToQString(bool /** i18n **/) const
{
QString s = CLength::stringForConverter();
QString s = CLength::convertToQString();
return s.append(this->m_msl ? " MSL" : " AGL");
}