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
bcd3c798
Commit
bcd3c798
authored
Aug 12, 2012
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: InfoPanel: unused p_intf
parent
a49c94e3
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 @
bcd3c798
...
...
@@ -411,9 +411,7 @@ void ExtraMetaPanel::clear()
* Third panel - Stream info
* Display all codecs and muxers info that we could gather.
**/
InfoPanel
::
InfoPanel
(
QWidget
*
parent
,
intf_thread_t
*
_p_intf
)
:
QWidget
(
parent
),
p_intf
(
_p_intf
)
InfoPanel
::
InfoPanel
(
QWidget
*
parent
)
:
QWidget
(
parent
)
{
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
...
...
modules/gui/qt4/components/info_panels.hpp
View file @
bcd3c798
...
...
@@ -155,9 +155,8 @@ class InfoPanel: public QWidget
{
Q_OBJECT
public:
InfoPanel
(
QWidget
*
,
struct
intf_thread_t
*
);
InfoPanel
(
QWidget
*
);
private:
struct
intf_thread_t
*
p_intf
;
QTreeWidget
*
InfoTree
;
public
slots
:
void
update
(
input_item_t
*
);
...
...
modules/gui/qt4/dialogs/mediainfo.cpp
View file @
bcd3c798
...
...
@@ -60,7 +60,7 @@ MediaInfoDialog::MediaInfoDialog( intf_thread_t *_p_intf,
infoTabW
->
addTab
(
MP
,
qtr
(
"&General"
)
);
EMP
=
new
ExtraMetaPanel
(
infoTabW
,
p_intf
);
infoTabW
->
addTab
(
EMP
,
qtr
(
"&Metadata"
)
);
IP
=
new
InfoPanel
(
infoTabW
,
p_intf
);
IP
=
new
InfoPanel
(
infoTabW
);
infoTabW
->
addTab
(
IP
,
qtr
(
"Co&dec"
)
);
if
(
isMainInputInfo
)
{
...
...
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