[vlc-devel] commit: qt4: fix uri printed in the media_info dialog. ( Rémi Duraffort )
git version control
git at videolan.org
Tue Mar 31 16:16:11 CEST 2009
vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Tue Mar 31 16:15:28 2009 +0200| [1be9f953715b9eb3da2d5da7bc9beca30cf6ea6c] | committer: Rémi Duraffort
qt4: fix uri printed in the media_info dialog.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1be9f953715b9eb3da2d5da7bc9beca30cf6ea6c
---
modules/gui/qt4/components/info_panels.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/gui/qt4/components/info_panels.cpp b/modules/gui/qt4/components/info_panels.cpp
index 90e1441..6287060 100644
--- a/modules/gui/qt4/components/info_panels.cpp
+++ b/modules/gui/qt4/components/info_panels.cpp
@@ -197,13 +197,13 @@ void MetaPanel::update( input_item_t *p_item )
/* URL / URI */
psz_meta = input_item_GetURL( p_item );
if( !EMPTY_STR( psz_meta ) )
- emit uriSet( psz_meta );
+ emit uriSet( qfu( psz_meta ) );
else
{
free( psz_meta );
psz_meta = input_item_GetURI( p_item );
if( !EMPTY_STR( psz_meta ) )
- emit uriSet( psz_meta );
+ emit uriSet( qfu( psz_meta ) );
}
free( psz_meta );
More information about the vlc-devel
mailing list