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

Fix audio buffer being opened read only

This commit is contained in:
Tux3 / Mlkj / !Lev.uXFMLA 2014-07-01 20:20:06 +02:00
parent 8f09d11940
commit 53a8221aff

View File

@ -3,7 +3,7 @@
AudioBuffer::AudioBuffer() :
QIODevice(0)
{
open(QIODevice::ReadOnly);
open(QIODevice::ReadWrite);
}
AudioBuffer::~AudioBuffer()