[vlc-commits] commit: Qt: blind fix for compilation of extended panels ( Jean-Baptiste Kempf )
git at videolan.org
git at videolan.org
Sat Jul 3 14:03:31 CEST 2010
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sat Jul 3 14:03:22 2010 +0200| [5a7b2f11a8fa75967ab64e55bc07163a3e92e847] | committer: Jean-Baptiste Kempf
Qt: blind fix for compilation of extended panels
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5a7b2f11a8fa75967ab64e55bc07163a3e92e847
---
modules/gui/qt4/components/extended_panels.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/gui/qt4/components/extended_panels.cpp b/modules/gui/qt4/components/extended_panels.cpp
index 9614f22..0f12f3a 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 )
More information about the vlc-commits
mailing list