Commit 85ab111d authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Qt4: use struct as needed

parent bbf31a42
...@@ -54,7 +54,7 @@ class MetaPanel: public QWidget ...@@ -54,7 +54,7 @@ class MetaPanel: public QWidget
{ {
Q_OBJECT; Q_OBJECT;
public: public:
MetaPanel( QWidget *, intf_thread_t * ); MetaPanel( QWidget *, struct intf_thread_t * );
void saveMeta(); void saveMeta();
bool isInEditMode(); bool isInEditMode();
...@@ -62,7 +62,7 @@ public: ...@@ -62,7 +62,7 @@ public:
private: private:
input_item_t *p_input; input_item_t *p_input;
intf_thread_t *p_intf; struct intf_thread_t *p_intf;
bool b_inEditMode; bool b_inEditMode;
QLineEdit *title_text; QLineEdit *title_text;
...@@ -97,9 +97,9 @@ class ExtraMetaPanel: public QWidget ...@@ -97,9 +97,9 @@ class ExtraMetaPanel: public QWidget
{ {
Q_OBJECT; Q_OBJECT;
public: public:
ExtraMetaPanel( QWidget *, intf_thread_t * ); ExtraMetaPanel( QWidget *, struct intf_thread_t * );
private: private:
intf_thread_t *p_intf; struct intf_thread_t *p_intf;
QTreeWidget *extraMetaTree; QTreeWidget *extraMetaTree;
public slots: public slots:
void update( input_item_t * ); void update( input_item_t * );
...@@ -110,9 +110,9 @@ class InputStatsPanel: public QWidget ...@@ -110,9 +110,9 @@ class InputStatsPanel: public QWidget
{ {
Q_OBJECT; Q_OBJECT;
public: public:
InputStatsPanel( QWidget *, intf_thread_t * ); InputStatsPanel( QWidget *, struct intf_thread_t * );
private: private:
intf_thread_t *p_intf; struct intf_thread_t *p_intf;
QTreeWidget *StatsTree; QTreeWidget *StatsTree;
QTreeWidgetItem *input; QTreeWidgetItem *input;
...@@ -148,9 +148,9 @@ class InfoPanel: public QWidget ...@@ -148,9 +148,9 @@ class InfoPanel: public QWidget
{ {
Q_OBJECT; Q_OBJECT;
public: public:
InfoPanel( QWidget *, intf_thread_t * ); InfoPanel( QWidget *, struct intf_thread_t * );
private: private:
intf_thread_t *p_intf; struct intf_thread_t *p_intf;
QTreeWidget *InfoTree; QTreeWidget *InfoTree;
public slots: public slots:
void update( input_item_t * ); void update( input_item_t * );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment