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

@@ -83,7 +83,7 @@ namespace BlackCore
// KB: Is see some potential changes here, which we should do when we have the new 2.0 vatlib
// 1. volume integrated in voice room?
// 2. Value object for volumes CVolume / CVolumeList?
void changedAudioVolumes(qint32 com1Volume, qint32 com2Volume);
void changedAudioVolumes(int com1Volume, int com2Volume);
//! Mute changed
void changedMute(bool muted);
@@ -156,7 +156,7 @@ namespace BlackCore
virtual void setVolumes(const BlackMisc::Aviation::CComSystem &com1, const BlackMisc::Aviation::CComSystem &com2) = 0;
//! Set the volumes (0..100)
virtual void setVolumes(qint32 volumeCom1, qint32 volumeCom2) = 0;
virtual void setVolumes(int volumeCom1, int volumeCom2) = 0;
//! Set mute state
virtual void setMute(bool mute) = 0;