[vlc-devel] commit: qt4: fix encoding problem when passing the album art url from the core to Qt. ( Rémi Duraffort )
git version control
git at videolan.org
Tue May 5 14:58:06 CEST 2009
vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Tue May 5 14:54:27 2009 +0200| [1c9e74885e4342586c122b7b688196455b54ca01] | committer: Rémi Duraffort
qt4: fix encoding problem when passing the album art url from the core to Qt.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1c9e74885e4342586c122b7b688196455b54ca01
---
modules/gui/qt4/input_manager.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/gui/qt4/input_manager.cpp b/modules/gui/qt4/input_manager.cpp
index a596ebd..94b08b4 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("" ) );
More information about the vlc-devel
mailing list