mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-03 15:45:46 +08:00
fixed callsign and two models
This commit is contained in:
@@ -71,10 +71,8 @@ namespace BlackMisc
|
||||
*/
|
||||
bool CCallsign::equalsString(const QString &callsignString) const
|
||||
{
|
||||
if (callsignString.isEmpty()) return false;
|
||||
if (this->isEmpty()) return false;
|
||||
if (callsignString == this->m_callsign || callsignString == this->m_callsignAsSet) return true;
|
||||
return false;
|
||||
CCallsign other(callsignString);
|
||||
return other == (*this);
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user