Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Gautam Chitnis
web-ui-redesign
Commits
55fe0126
Commit
55fe0126
authored
Aug 12, 2012
by
François 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