1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Fix audio not working on 64-bit windows with non-latin audio device names

properly fixes #816
This commit is contained in:
Zetok Zalbavar 2015-09-25 08:03:17 +01:00
parent 1673b43e26
commit b2b50c26ce
No known key found for this signature in database
GPG Key ID: C953D3880212068A

View File

@ -264,7 +264,7 @@ void AVForm::getAudioInDevices()
while (*pDeviceList)
{
int len = strlen(pDeviceList);
#ifdef Q_OS_WIN32
#ifdef Q_OS_WIN
QString inDev = QString::fromUtf8(pDeviceList,len);
#else
QString inDev = QString::fromLocal8Bit(pDeviceList,len);
@ -298,7 +298,7 @@ void AVForm::getAudioOutDevices()
while (*pDeviceList)
{
int len = strlen(pDeviceList);
#ifdef Q_OS_WIN32
#ifdef Q_OS_WIN
QString outDev = QString::fromUtf8(pDeviceList,len);
#else
QString outDev = QString::fromLocal8Bit(pDeviceList,len);