From: Jean-Baptiste Kempf Date: Sat, 3 Jul 2010 12:03:22 +0000 (+0200) Subject: Qt: blind fix for compilation of extended panels X-Git-Tag: 1.2.0-pre1~5966 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=5a7b2f11a8fa75967ab64e55bc07163a3e92e847;p=vlc Qt: blind fix for compilation of extended panels --- diff --git a/modules/gui/qt4/components/extended_panels.cpp b/modules/gui/qt4/components/extended_panels.cpp index 9614f22ec6..0f12f3aa2c 100644 --- a/modules/gui/qt4/components/extended_panels.cpp +++ b/modules/gui/qt4/components/extended_panels.cpp @@ -486,7 +486,7 @@ void ExtVideo::setWidgetValue( QObject *widget ) lineedit->setText( str ); } 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 if( i_type == VLC_VAR_FLOAT )