mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-04 16:56:53 +08:00
refs #343, Changed transponder code and volume to int as discussed
This commit is contained in:
committed by
Roland Winklmeier
parent
4fab9a2fad
commit
c173a30a94
@@ -89,7 +89,7 @@ namespace BlackCore
|
||||
virtual void setVolumes(const BlackMisc::Aviation::CComSystem &com1, const BlackMisc::Aviation::CComSystem &com2) override;
|
||||
|
||||
//!\copydoc IContext::setVolumes
|
||||
virtual void setVolumes(qint32 com1Volume, qint32 com2Volume) override;
|
||||
virtual void setVolumes(int com1Volume, int com2Volume) override;
|
||||
|
||||
//! \copydoc ICOntext::setMute
|
||||
virtual void setMute(bool muted) override;
|
||||
@@ -157,8 +157,8 @@ namespace BlackCore
|
||||
void ps_initNotificationSounds();
|
||||
|
||||
private:
|
||||
const qint32 MinUnmuteVolume = 20; //!< minimum volume when unmuted
|
||||
const qint32 VoiceRoomEnabledVolume = 95; //!< voice room volume when enabled
|
||||
const int MinUnmuteVolume = 20; //!< minimum volume when unmuted
|
||||
const int VoiceRoomEnabledVolume = 95; //!< voice room volume when enabled
|
||||
|
||||
//! Connection in transition
|
||||
bool inTransitionState() const;
|
||||
|
||||
Reference in New Issue
Block a user