refs #343, Changed transponder code and volume to int as discussed

This commit is contained in:
Klaus Basan
2014-11-17 01:47:22 +01:00
committed by Roland Winklmeier
parent 4fab9a2fad
commit c173a30a94
6 changed files with 16 additions and 13 deletions

View File

@@ -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;