Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
85ab111d
Commit
85ab111d
authored
May 23, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4: use struct as needed
parent
bbf31a42
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
modules/gui/qt4/components/info_panels.hpp
modules/gui/qt4/components/info_panels.hpp
+8
-8
No files found.
modules/gui/qt4/components/info_panels.hpp
View file @
85ab111d
...
...
@@ -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
*
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment