[vlc-devel] commit: Qt4: use struct as needed ( Rémi Denis-Courmont )

git version control git at videolan.org
Sat May 23 20:18:16 CEST 2009


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat May 23 19:58:56 2009 +0300| [85ab111d26d91029e4f0298833d530a89f9f3334] | committer: Rémi Denis-Courmont 

Qt4: use struct as needed

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=85ab111d26d91029e4f0298833d530a89f9f3334
---

 modules/gui/qt4/components/info_panels.hpp |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/modules/gui/qt4/components/info_panels.hpp b/modules/gui/qt4/components/info_panels.hpp
index f5d8de8..d45d25e 100644
--- a/modules/gui/qt4/components/info_panels.hpp
+++ b/modules/gui/qt4/components/info_panels.hpp
@@ -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 * );




More information about the vlc-devel mailing list