Commit 9e43b17d authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4: fix remaining preferences intempestive popups.

parent c74c5cb2
...@@ -453,7 +453,7 @@ AdvPrefsPanel::AdvPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent, ...@@ -453,7 +453,7 @@ AdvPrefsPanel::AdvPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
layout->addWidget( box, i_line, 0, 1, -1 ); layout->addWidget( box, i_line, 0, 1, -1 );
i_line++; i_line++;
} }
box = new QGroupBox( qtr( p_item->psz_text ) ); box = new QGroupBox( qtr( p_item->psz_text ), this );
box->hide(); box->hide();
boxlayout = new QGridLayout(); boxlayout = new QGridLayout();
} }
......
...@@ -610,7 +610,7 @@ ModuleListConfigControl::ModuleListConfigControl( vlc_object_t *_p_this, ...@@ -610,7 +610,7 @@ ModuleListConfigControl::ModuleListConfigControl( vlc_object_t *_p_this,
/* Special Hack */ /* Special Hack */
if( !p_item->psz_text ) return; 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; text = new QLineEdit;
QGridLayout *layoutGroupBox = new QGridLayout( groupBox ); 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