[vlc-commits] qt4: fix preferences widget compile

Ilkka Ollakka git at videolan.org
Sat Sep 3 18:38:48 CEST 2011


vlc | branch: master | Ilkka Ollakka <ileoo at videolan.org> | Sat Sep  3 19:31:20 2011 +0300| [5e98d6dac6afdfe6682d3818d6144e9e4d6071bf] | committer: Ilkka Ollakka

qt4: fix preferences widget compile

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5e98d6dac6afdfe6682d3818d6144e9e4d6071bf
---

 modules/gui/qt4/components/preferences_widgets.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/gui/qt4/components/preferences_widgets.cpp b/modules/gui/qt4/components/preferences_widgets.cpp
index 65d5cf3..70e1294 100644
--- a/modules/gui/qt4/components/preferences_widgets.cpp
+++ b/modules/gui/qt4/components/preferences_widgets.cpp
@@ -541,7 +541,7 @@ void setfillVLCConfigCombo( const char *configname, intf_thread_t *p_intf,
        if( string )
            def = QVariant( qfu(p_config->value.psz) );
        else
-           def = QVariant( p_config->value.i );
+           def = QVariant( qlonglong( p_config->value.i ) );
 
        if(p_config->pf_update_list)
         {



More information about the vlc-commits mailing list