From 1c9e74885e4342586c122b7b688196455b54ca01 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Duraffort?= Date: Tue, 5 May 2009 14:54:27 +0200 Subject: [PATCH] qt4: fix encoding problem when passing the album art url from the core to Qt. --- modules/gui/qt4/input_manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gui/qt4/input_manager.cpp b/modules/gui/qt4/input_manager.cpp index a596ebd9bf..94b08b4b95 100644 --- a/modules/gui/qt4/input_manager.cpp +++ b/modules/gui/qt4/input_manager.cpp @@ -589,7 +589,7 @@ void InputManager::UpdateArt() if( hasInput() ) { char *psz_art = input_item_GetArtURL( input_GetItem( p_input ) ); - url = psz_art; + url = qfu( psz_art ); free( psz_art ); } url = url.replace( "file://", QString("" ) ); -- 2.39.2