From d576823830c511371248b9afca20426fcdf937e6 Mon Sep 17 00:00:00 2001 From: Bryant Date: Wed, 19 Feb 2014 19:10:54 -0800 Subject: [PATCH] Disable text output from GAudioOutput. All it does is clutter the terminal and it's not doing anything anyways. --- src/GAudioOutput.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/GAudioOutput.cc b/src/GAudioOutput.cc index e7dafc55e..71a9bc9fa 100644 --- a/src/GAudioOutput.cc +++ b/src/GAudioOutput.cc @@ -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(); } -- 2.22.0