]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/dialogs/prefs_dialog.cpp
Qt4 : SimplePrefs: various fixes, remove some widgets, uniformity, cleaning and hidin...
[vlc] / modules / gui / qt4 / dialogs / prefs_dialog.cpp
index ce6ce20f8b519f94fd2b00fb7f824164a1b0949b..6e4ccfcdbdf6e02a0e1e55ca105a507204633c12 100644 (file)
 #include <QPushButton>
 #include <QCheckBox>
 #include <QScrollArea>
-#include <QLabel>
+
 PrefsDialog *PrefsDialog::instance = NULL;
 
 PrefsDialog::PrefsDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
 {
      QGridLayout *main_layout = new QGridLayout(this);
      setWindowTitle( qtr( "Preferences" ) );
-     resize( 800, 450 );
-     setMaximumHeight (450);
+     resize( 800, 600 );
+     setMaximumHeight (600);
 
      tree_panel = new QWidget(0);
      tree_panel_l = new QHBoxLayout;