Commit 8edbefcd authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4: fix remaining preferences intempestive popups.

(cherry picked from commit 9e43b17d)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent b72db57c
......@@ -457,7 +457,7 @@ AdvPrefsPanel::AdvPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
layout->addWidget( box, i_line, 0, 1, -1 );
i_line++;
}
box = new QGroupBox( qtr( p_item->psz_text ) );
box = new QGroupBox( qtr( p_item->psz_text ), this );
box->hide();
boxlayout = new QGridLayout();
}
......
......@@ -613,7 +613,7 @@ ModuleListConfigControl::ModuleListConfigControl( vlc_object_t *_p_this,
/* Special Hack */
if( !p_item->psz_text ) return;
groupBox = new QGroupBox ( qtr(p_item->psz_text) );
groupBox = new QGroupBox ( qtr(p_item->psz_text), _parent );
text = new QLineEdit;
QGridLayout *layoutGroupBox = new QGridLayout( groupBox );
......
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