mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-02 23:25:53 +08:00
refs #146, Minor changes and cleanup tasks
* CCallsign::getCallsignPronounced -> getTelephonyDesignator * CAircraft , comments renamed to 1 line style //! * CAtcStation, comments renamed to 1 line style //! and added method hasValidFrequency() * CAvioTransponder changed formatting * CUser, comments renamed to 1 line style //! * CCallsign, m_callsignPronounced -> m_telephonyDesignator , comments renamed to 1 line style //!
This commit is contained in:
@@ -18,7 +18,7 @@ namespace BlackMisc
|
||||
void CCallsign::marshallToDbus(QDBusArgument &argument) const
|
||||
{
|
||||
argument << this->m_callsignAsSet;
|
||||
argument << this->m_callsignPronounced;
|
||||
argument << this->m_telephonyDesignator;
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -27,7 +27,7 @@ namespace BlackMisc
|
||||
void CCallsign::unmarshallFromDbus(const QDBusArgument &argument)
|
||||
{
|
||||
argument >> this->m_callsignAsSet;
|
||||
argument >> this->m_callsignPronounced;
|
||||
argument >> this->m_telephonyDesignator;
|
||||
this->m_callsign = CCallsign::unifyCallsign(this->m_callsignAsSet);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user