]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/components/preferences.hpp
Add video filters panel
[vlc] / modules / gui / qt4 / components / preferences.hpp
index 3a24f25614854150c6e25cc58a890f1c59b5e096..1c53e2e8b97eca5d93e31e61c0b13a7907cccec3 100644 (file)
@@ -44,13 +44,14 @@ class PrefsItemData : public QObject
 {
 public:
     PrefsItemData()
-    { panel = NULL; i_object_id = 0; i_subcat_id = -1; };
-    virtual ~PrefsItemData() {};
+    { panel = NULL; i_object_id = 0; i_subcat_id = -1; psz_name = NULL; };
+    virtual ~PrefsItemData() { free( psz_name ); };
     PrefsPanel *panel;
     int i_object_id;
     int i_subcat_id;
     int i_type;
     bool b_submodule;
+    char *psz_name;
     QString name;
     QString help;
 };