Commit dcf0b4f9 authored by Lorenz Meier's avatar Lorenz Meier

Merge pull request #546 from Susurrus/remove_beep

Disable text output from GAudioOutput.
parents 2a692725 d5768238
......@@ -329,9 +329,10 @@ void GAudioOutput::beep()
{
if (!muted)
{
// TODO: Re-enable audio beeps
// Use QFile to transform path for all OS
QFile f(QCoreApplication::applicationDirPath() + QString("/files/audio/alert.wav"));
qDebug() << "FILE:" << f.fileName();
//QFile f(QCoreApplication::applicationDirPath() + QString("/files/audio/alert.wav"));
//qDebug() << "FILE:" << f.fileName();
//m_media->setCurrentSource(Phonon::MediaSource(f.fileName().toStdString().c_str()));
//m_media->play();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment