[vlc-commits] Qt: fix typo in latest commit
Jean-Baptiste Kempf
git at videolan.org
Mon Apr 25 23:21:28 CEST 2011
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Mon Apr 25 23:21:14 2011 +0200| [5a69c1b5a8ebaf26e2714a2e176f585c37f29db7] | committer: Jean-Baptiste Kempf
Qt: fix typo in latest commit
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5a69c1b5a8ebaf26e2714a2e176f585c37f29db7
---
modules/gui/qt4/components/info_panels.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/gui/qt4/components/info_panels.cpp b/modules/gui/qt4/components/info_panels.cpp
index c8855dc..db9cc4a 100644
--- a/modules/gui/qt4/components/info_panels.cpp
+++ b/modules/gui/qt4/components/info_panels.cpp
@@ -187,7 +187,7 @@ void MetaPanel::update( input_item_t *p_item )
#define UPDATE_META( meta, widget ) { \
psz_meta = input_item_Get##meta( p_item ); \
widget->setText( !EMPTY_STR( psz_meta ) ? qfu( psz_meta ) : "" ); \
- free( psz_meta );
+ free( psz_meta ); }
#define UPDATE_META_INT( meta, widget ) { \
psz_meta = input_item_Get##meta( p_item ); \
More information about the vlc-commits
mailing list