git.videolan.org
/
vlc.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
qt4: fix encoding problem when passing the album art url from the core to Qt.
[vlc.git]
/
modules
/
gui
/
qt4
/
input_manager.cpp
diff --git
a/modules/gui/qt4/input_manager.cpp
b/modules/gui/qt4/input_manager.cpp
index
a596ebd
..
94b08b4
100644
(file)
--- 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("" ) );