]> git.sesse.net Git - vlc/commitdiff
Qt4: use struct as needed
authorRémi Denis-Courmont <remi@remlab.net>
Sat, 23 May 2009 16:58:56 +0000 (19:58 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Sat, 23 May 2009 17:01:24 +0000 (20:01 +0300)
modules/gui/qt4/components/info_panels.hpp

index f5d8de8ede673319468ef321d5f9977779ce3b72..d45d25e606f63b63dce3ca321a92f4eb9cee95fb 100644 (file)
@@ -54,7 +54,7 @@ class MetaPanel: public QWidget
 {
     Q_OBJECT;
 public:
-    MetaPanel( QWidget *, intf_thread_t * );
+    MetaPanel( QWidget *, struct intf_thread_t * );
     void saveMeta();
 
     bool isInEditMode();
@@ -62,7 +62,7 @@ public:
 
 private:
     input_item_t *p_input;
-    intf_thread_t *p_intf;
+    struct intf_thread_t *p_intf;
     bool b_inEditMode;
 
     QLineEdit *title_text;
@@ -97,9 +97,9 @@ class ExtraMetaPanel: public QWidget
 {
     Q_OBJECT;
 public:
-    ExtraMetaPanel( QWidget *, intf_thread_t * );
+    ExtraMetaPanel( QWidget *, struct intf_thread_t * );
 private:
-    intf_thread_t *p_intf;
+    struct intf_thread_t *p_intf;
     QTreeWidget *extraMetaTree;
 public slots:
     void update( input_item_t * );
@@ -110,9 +110,9 @@ class InputStatsPanel: public QWidget
 {
     Q_OBJECT;
 public:
-    InputStatsPanel( QWidget *, intf_thread_t * );
+    InputStatsPanel( QWidget *, struct intf_thread_t * );
 private:
-    intf_thread_t *p_intf;
+    struct intf_thread_t *p_intf;
 
     QTreeWidget *StatsTree;
     QTreeWidgetItem *input;
@@ -148,9 +148,9 @@ class InfoPanel: public QWidget
 {
     Q_OBJECT;
 public:
-    InfoPanel( QWidget *, intf_thread_t * );
+    InfoPanel( QWidget *, struct intf_thread_t * );
 private:
-    intf_thread_t *p_intf;
+    struct intf_thread_t *p_intf;
     QTreeWidget *InfoTree;
 public slots:
     void update( input_item_t * );