mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-05-04 17:30:12 +08:00
As a follow up of review T111, changed "void static" to "static void" for consistency.
This commit is contained in:
committed by
Mathew Sutcliffe
parent
addb008ffa
commit
3f924209f1
@@ -71,10 +71,10 @@ namespace BlackMisc
|
|||||||
CAngle(int degrees, double minutes);
|
CAngle(int degrees, double minutes);
|
||||||
|
|
||||||
//! Minutes and secods will get same sign as degrees
|
//! Minutes and secods will get same sign as degrees
|
||||||
void static unifySign(int degrees, int &minutes, double &seconds);
|
static void unifySign(int degrees, int &minutes, double &seconds);
|
||||||
|
|
||||||
//! Minutes will get same sign as degrees
|
//! Minutes will get same sign as degrees
|
||||||
void static unifySign(int degrees, int &minutes);
|
static void unifySign(int degrees, int &minutes);
|
||||||
|
|
||||||
//! \copydoc BlackMisc::Mixin::Icon::toIcon
|
//! \copydoc BlackMisc::Mixin::Icon::toIcon
|
||||||
BlackMisc::CIcon toIcon() const;
|
BlackMisc::CIcon toIcon() const;
|
||||||
|
|||||||
@@ -171,7 +171,7 @@ namespace BlackMisc
|
|||||||
) = 0;
|
) = 0;
|
||||||
|
|
||||||
//! Remove outdated aircraft parts, but never the most recent one
|
//! Remove outdated aircraft parts, but never the most recent one
|
||||||
void static removeOutdatedParts(Aviation::CAircraftPartsList &partsList);
|
static void removeOutdatedParts(Aviation::CAircraftPartsList &partsList);
|
||||||
};
|
};
|
||||||
|
|
||||||
//! Class which can be directly used to access an \sa IRemoteAircraftProvider object
|
//! Class which can be directly used to access an \sa IRemoteAircraftProvider object
|
||||||
|
|||||||
@@ -87,7 +87,7 @@ namespace BlackMisc
|
|||||||
void setPropertyByIndex(const BlackMisc::CPropertyIndex &index, const CVariant &variant);
|
void setPropertyByIndex(const BlackMisc::CPropertyIndex &index, const CVariant &variant);
|
||||||
|
|
||||||
//! Register metadata
|
//! Register metadata
|
||||||
void static registerMetadata();
|
static void registerMetadata();
|
||||||
|
|
||||||
//! \copydoc BlackMisc::Mixin::String::toQString()
|
//! \copydoc BlackMisc::Mixin::String::toQString()
|
||||||
QString convertToQString(bool i18n = false) const;
|
QString convertToQString(bool i18n = false) const;
|
||||||
|
|||||||
@@ -173,7 +173,7 @@ namespace BlackSound
|
|||||||
static void playNotificationSound(int volume, BlackMisc::Audio::CNotificationSounds::Notification notification);
|
static void playNotificationSound(int volume, BlackMisc::Audio::CNotificationSounds::Notification notification);
|
||||||
|
|
||||||
//! For debugging purposes
|
//! For debugging purposes
|
||||||
void static printAllQtSoundDevices(QTextStream &qtout);
|
static void printAllQtSoundDevices(QTextStream &qtout);
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
//! Device was closed
|
//! Device was closed
|
||||||
|
|||||||
Reference in New Issue
Block a user