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
{
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 * );
......
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