]> git.sesse.net Git - vlc/commitdiff
qt4: complete preferences: QList is a more appropriate container for this.
authorHugo Beauzée-Luyssen <beauze.h@gmail.com>
Fri, 15 Apr 2011 14:41:16 +0000 (16:41 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Fri, 15 Apr 2011 15:28:49 +0000 (17:28 +0200)
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
modules/gui/qt4/components/preferences_widgets.hpp

index 27b0cda8bb0082994de29eae703776e5b2637f9a..7b4230ca53fec600bd0ae5b0fdc2d34b7cb693e9 100644 (file)
@@ -43,7 +43,6 @@
 #include <QLabel>
 #include <QDoubleSpinBox>
 #include <QPushButton>
-#include <QVector>
 #include <QDialog>
 #include <QFontComboBox>
 
@@ -374,7 +373,7 @@ public slots:
     void onUpdate();
 private:
     void finish( bool );
-    QVector<checkBoxListItem*> modules;
+    QList<checkBoxListItem*> modules;
     QGroupBox *groupBox;
     QLineEdit *text;
 };