From acd5faf93d44fa3d48240c75dfb7f35557762b83 Mon Sep 17 00:00:00 2001 From: Dominik Schmidt Date: Thu, 5 Feb 2015 17:39:10 +0100 Subject: [PATCH] Don't refer to Phonon anymore on audio problems --- src/tomahawk/TomahawkWindow.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/tomahawk/TomahawkWindow.cpp b/src/tomahawk/TomahawkWindow.cpp index 832d8c7dd..e824d9e55 100644 --- a/src/tomahawk/TomahawkWindow.cpp +++ b/src/tomahawk/TomahawkWindow.cpp @@ -1265,12 +1265,7 @@ TomahawkWindow::onJSPFError() { void TomahawkWindow::onAudioEngineError( AudioEngine::AudioErrorCode /* error */ ) { - QString msg; - #ifdef Q_OS_LINUX - msg = tr( "Sorry, there is a problem accessing your audio device or the desired track, current track will be skipped. Make sure you have a suitable Phonon backend and required plugins installed." ); - #else - msg = tr( "Sorry, there is a problem accessing your audio device or the desired track, current track will be skipped." ); - #endif + QString msg = tr( "Sorry, there is a problem accessing your audio device or the desired track, current track will be skipped." ); tLog() << msg;