Commit 5a7b2f11 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: blind fix for compilation of extended panels

parent 15b18c04
...@@ -486,7 +486,7 @@ void ExtVideo::setWidgetValue( QObject *widget ) ...@@ -486,7 +486,7 @@ void ExtVideo::setWidgetValue( QObject *widget )
lineedit->setText( str ); lineedit->setText( str );
} }
else if( combobox ) combobox->setCurrentIndex( else if( combobox ) combobox->setCurrentIndex(
combobox->findData( val.i_int ) ); combobox->findData( qlonglong(val.i_int) ) );
else msg_Warn( p_intf, "Oops %s %s %d", __FILE__, __func__, __LINE__ ); else msg_Warn( p_intf, "Oops %s %s %d", __FILE__, __func__, __LINE__ );
} }
else if( i_type == VLC_VAR_FLOAT ) else if( i_type == VLC_VAR_FLOAT )
......
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