Commit 5deee43b authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Qt4: fix types conversion in extended preferences

parent 6f1bad2a
...@@ -450,7 +450,7 @@ void ExtVideo::initComboBoxItems( QObject *widget ) ...@@ -450,7 +450,7 @@ void ExtVideo::initComboBoxItems( QObject *widget )
p_item->pi_list[i_index] ); p_item->pi_list[i_index] );
else if( i_type == CONFIG_ITEM_STRING ) else if( i_type == CONFIG_ITEM_STRING )
combobox->addItem( qtr( p_item->ppsz_list_text[i_index] ), combobox->addItem( qtr( p_item->ppsz_list_text[i_index] ),
p_item->ppsz_list[i_index] ); qfu(p_item->ppsz_list[i_index]) );
} }
} }
else else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment