vlc/vlc-2.0 | branch: master | Jean-Baptiste Kempf <[email protected]> | Tue Feb 21 23:56:10 2012 +0100| [abba280f0d6640bc8ea33af046d46dc641c4a6a8] | committer: Jean-Baptiste Kempf
Qt: missing encoding conversion for AspectRatio box (cherry picked from commit 2d0b4b20ffc18581657f430293ee7e7d8cdc7270) Signed-off-by: Jean-Baptiste Kempf <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc/vlc-2.0.git/?a=commit;h=abba280f0d6640bc8ea33af046d46dc641c4a6a8 --- modules/gui/qt4/components/controller_widget.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/modules/gui/qt4/components/controller_widget.cpp b/modules/gui/qt4/components/controller_widget.cpp index 545e322..1d16ee1 100644 --- a/modules/gui/qt4/components/controller_widget.cpp +++ b/modules/gui/qt4/components/controller_widget.cpp @@ -281,7 +281,7 @@ void AspectRatioComboBox::updateRatios() { } var_Change( p_vout, "aspect-ratio", VLC_VAR_GETLIST, &val_list, &text_list ); for( int i = 0; i < val_list.p_list->i_count; i++ ) - addItem( QString( text_list.p_list->p_values[i].psz_string ), QString( val_list.p_list->p_values[i].psz_string ) ); + addItem( qfu( text_list.p_list->p_values[i].psz_string ), QString( val_list.p_list->p_values[i].psz_string ) ); setEnabled( true ); var_FreeList( &val_list, &text_list ); } _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
