[vlc-commits] Qt4: fix types conversion in extended preferences
Rémi Denis-Courmont
git at videolan.org
Wed Aug 15 09:12:19 CEST 2012
vlc/vlc-2.0 | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Wed Aug 15 10:11:53 2012 +0300| [5deee43b1f85a8def839aafa65967e65a4fab074] | committer: Rémi Denis-Courmont
Qt4: fix types conversion in extended preferences
> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.0.git/?a=commit;h=5deee43b1f85a8def839aafa65967e65a4fab074
---
modules/gui/qt4/components/extended_panels.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/gui/qt4/components/extended_panels.cpp b/modules/gui/qt4/components/extended_panels.cpp
index d439a13..2a00613 100644
--- a/modules/gui/qt4/components/extended_panels.cpp
+++ b/modules/gui/qt4/components/extended_panels.cpp
@@ -450,7 +450,7 @@ void ExtVideo::initComboBoxItems( QObject *widget )
p_item->pi_list[i_index] );
else if( i_type == CONFIG_ITEM_STRING )
combobox->addItem( qtr( p_item->ppsz_list_text[i_index] ),
- p_item->ppsz_list[i_index] );
+ qfu(p_item->ppsz_list[i_index]) );
}
}
else
More information about the vlc-commits
mailing list