From: Felix Paul Kühne Date: Thu, 31 Jan 2008 17:24:36 +0000 (+0000) Subject: qt4: fix [24714] properly X-Git-Tag: 0.9.0-test0~3064 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=1ecb168d19f4f82bba2dbdce3c6e83c7a06fd49b;p=vlc qt4: fix [24714] properly --- diff --git a/modules/gui/qt4/components/simple_preferences.cpp b/modules/gui/qt4/components/simple_preferences.cpp index aaffa3fe1d..5cf5177c5b 100644 --- a/modules/gui/qt4/components/simple_preferences.cpp +++ b/modules/gui/qt4/components/simple_preferences.cpp @@ -438,9 +438,8 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent, CONNECT( ui.updatesBox, toggled( bool ), ui.updatesDays, setEnabled( bool ) ); #else - /* FIXME: PROPERLY !! - ui.updatesBox.hide(); - ui.updatesDays.hide(); */ + ui.updatesBox->hide(); + ui.updatesDays->hide(); */ #endif CONFIG_GENERIC( "qt-always-video", Bool, NULL, qtAlwaysVideo ); CONFIG_GENERIC( "embeded-video", Bool, NULL, embedVideo );