]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/components/preferences_widgets.hpp
Qt4- SImple Preferences. Add file and directory configuration.
[vlc] / modules / gui / qt4 / components / preferences_widgets.hpp
index 9ad8d2d1f47462b08373bb8649f6dd35c49395e4..73ec4f48d923f0738d947c94dd96d6da45ff77f1 100644 (file)
@@ -261,7 +261,7 @@ public:
     FileConfigControl( vlc_object_t *, module_config_t *, QWidget *,
                          QGridLayout *, int&, bool pwd );
     FileConfigControl( vlc_object_t *, module_config_t *, QLabel *,
-                        QLineEdit*, bool pwd );
+                        QLineEdit *, QPushButton *, bool pwd );
     virtual ~FileConfigControl() {};
     virtual QString getValue() { return text->text(); };
     virtual void show() { text->show(); label->show(); browse->show(); }
@@ -283,7 +283,7 @@ public:
     DirectoryConfigControl( vlc_object_t *, module_config_t *, QWidget *,
                          QGridLayout *, int&, bool pwd );
     DirectoryConfigControl( vlc_object_t *, module_config_t *, QLabel *,
-                        QLineEdit*, bool pwd );
+                        QLineEdit *, QPushButton *, bool pwd );
     virtual ~DirectoryConfigControl() {};
     virtual QString getValue() { return text->text(); };
     virtual void show() { text->show(); label->show(); browse->show(); }