[AFV] Remove obsolete VVL device index from CAudioDeviceInfo

This commit is contained in:
Roland Rossgotterer
2019-10-02 10:40:03 +02:00
committed by Mat Sutcliffe
parent 33d125c121
commit c759d45bb0
4 changed files with 9 additions and 31 deletions

View File

@@ -17,12 +17,12 @@ namespace BlackMisc
namespace Audio
{
CAudioDeviceInfo::CAudioDeviceInfo() :
m_type(Unknown), m_deviceIndex(invalidDeviceIndex()),
m_type(Unknown),
m_hostName(QHostInfo::localHostName())
{ }
CAudioDeviceInfo::CAudioDeviceInfo(DeviceType type, const int index, const QString &name) :
m_type(type), m_deviceIndex(index),
CAudioDeviceInfo::CAudioDeviceInfo(DeviceType type, const QString &name) :
m_type(type),
m_deviceName(name), m_hostName(QHostInfo::localHostName())
{ }