Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
55fe0126
Commit
55fe0126
authored
Aug 12, 2012
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: ExtraMetaPanel: remove unused p_intf
parent
c7f9626c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
6 deletions
+3
-6
modules/gui/qt4/components/info_panels.cpp
modules/gui/qt4/components/info_panels.cpp
+1
-3
modules/gui/qt4/components/info_panels.hpp
modules/gui/qt4/components/info_panels.hpp
+1
-2
modules/gui/qt4/dialogs/mediainfo.cpp
modules/gui/qt4/dialogs/mediainfo.cpp
+1
-1
No files found.
modules/gui/qt4/components/info_panels.cpp
View file @
55fe0126
...
...
@@ -339,9 +339,7 @@ void MetaPanel::clear()
/**
* Second Panel - Shows the extra metadata in a tree, non editable.
**/
ExtraMetaPanel
::
ExtraMetaPanel
(
QWidget
*
parent
,
intf_thread_t
*
_p_intf
)
:
QWidget
(
parent
),
p_intf
(
_p_intf
)
ExtraMetaPanel
::
ExtraMetaPanel
(
QWidget
*
parent
)
:
QWidget
(
parent
)
{
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
...
...
modules/gui/qt4/components/info_panels.hpp
View file @
55fe0126
...
...
@@ -104,9 +104,8 @@ class ExtraMetaPanel: public QWidget
{
Q_OBJECT
public:
ExtraMetaPanel
(
QWidget
*
,
struct
intf_thread_t
*
);
ExtraMetaPanel
(
QWidget
*
);
private:
struct
intf_thread_t
*
p_intf
;
QTreeWidget
*
extraMetaTree
;
public
slots
:
void
update
(
input_item_t
*
);
...
...
modules/gui/qt4/dialogs/mediainfo.cpp
View file @
55fe0126
...
...
@@ -58,7 +58,7 @@ MediaInfoDialog::MediaInfoDialog( intf_thread_t *_p_intf,
MP
=
new
MetaPanel
(
infoTabW
,
p_intf
);
infoTabW
->
addTab
(
MP
,
qtr
(
"&General"
)
);
EMP
=
new
ExtraMetaPanel
(
infoTabW
,
p_intf
);
EMP
=
new
ExtraMetaPanel
(
infoTabW
);
infoTabW
->
addTab
(
EMP
,
qtr
(
"&Metadata"
)
);
IP
=
new
InfoPanel
(
infoTabW
);
infoTabW
->
addTab
(
IP
,
qtr
(
"Co&dec"
)
);
...
...
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