]> git.sesse.net Git - vlc/commitdiff
Qt4: fix remaining preferences intempestive popups.
authorJean-Baptiste Kempf <jb@videolan.org>
Thu, 2 Oct 2008 22:03:11 +0000 (15:03 -0700)
committerJean-Baptiste Kempf <jb@videolan.org>
Sat, 4 Oct 2008 16:21:50 +0000 (09:21 -0700)
modules/gui/qt4/components/complete_preferences.cpp
modules/gui/qt4/components/preferences_widgets.cpp

index b3b648696aba1c75f306dffb0a0cbe511a6952d8..64416ee567c4e2ad917bda00eda5f5d82d4a39e9 100644 (file)
@@ -453,7 +453,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();
         }
index c50957f5fa53edfe8dba32705b7c026890e9b422..588a6a909641e18c12d4db033fd5f597d3649e88 100644 (file)
@@ -610,7 +610,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 );