Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
c7f9626c
Commit
c7f9626c
authored
Aug 12, 2012
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: InputStatsPanel: remove unused p_intf
parent
bcd3c798
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
7 deletions
+3
-7
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
-3
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 @
c7f9626c
...
...
@@ -486,9 +486,7 @@ void InfoPanel::saveCodecsInfo()
* Fourth Panel - Stats
* Displays the Statistics for reading/streaming/encoding/displaying in a tree
*/
InputStatsPanel
::
InputStatsPanel
(
QWidget
*
parent
,
intf_thread_t
*
_p_intf
)
:
QWidget
(
parent
),
p_intf
(
_p_intf
)
InputStatsPanel
::
InputStatsPanel
(
QWidget
*
parent
)
:
QWidget
(
parent
)
{
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
...
...
modules/gui/qt4/components/info_panels.hpp
View file @
c7f9626c
...
...
@@ -117,10 +117,8 @@ class InputStatsPanel: public QWidget
{
Q_OBJECT
public:
InputStatsPanel
(
QWidget
*
,
struct
intf_thread_t
*
);
InputStatsPanel
(
QWidget
*
);
private:
struct
intf_thread_t
*
p_intf
;
QTreeWidget
*
StatsTree
;
QTreeWidgetItem
*
input
;
QTreeWidgetItem
*
read_media_stat
;
...
...
modules/gui/qt4/dialogs/mediainfo.cpp
View file @
c7f9626c
...
...
@@ -64,7 +64,7 @@ MediaInfoDialog::MediaInfoDialog( intf_thread_t *_p_intf,
infoTabW
->
addTab
(
IP
,
qtr
(
"Co&dec"
)
);
if
(
isMainInputInfo
)
{
ISP
=
new
InputStatsPanel
(
infoTabW
,
p_intf
);
ISP
=
new
InputStatsPanel
(
infoTabW
);
infoTabW
->
addTab
(
ISP
,
qtr
(
"S&tatistics"
)
);
}
...
...
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