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
b4465b3c
Commit
b4465b3c
authored
Dec 13, 2007
by
Ilkka Ollakka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove (seems to be) unneeded b_need_update variable
parent
57300f50
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
5 deletions
+1
-5
modules/gui/qt4/dialogs/mediainfo.cpp
modules/gui/qt4/dialogs/mediainfo.cpp
+1
-4
modules/gui/qt4/dialogs/mediainfo.hpp
modules/gui/qt4/dialogs/mediainfo.hpp
+0
-1
No files found.
modules/gui/qt4/dialogs/mediainfo.cpp
View file @
b4465b3c
...
...
@@ -42,7 +42,6 @@ MediaInfoDialog::MediaInfoDialog( intf_thread_t *_p_intf,
{
i_runs
=
0
;
p_item
=
_p_item
;
b_need_update
=
true
;
b_cleaned
=
true
;
setWindowTitle
(
qtr
(
"Media information"
)
);
...
...
@@ -133,9 +132,7 @@ void MediaInfoDialog::update( input_thread_t *p_input )
/* Launch the update in all the panels */
vlc_object_yield
(
p_input
);
update
(
input_GetItem
(
p_input
),
b_need_update
,
b_need_update
);
b_need_update
=
false
;
b_cleaned
=
false
;
update
(
input_GetItem
(
p_input
),
true
,
true
);
vlc_object_release
(
p_input
);
}
...
...
modules/gui/qt4/dialogs/mediainfo.hpp
View file @
b4465b3c
...
...
@@ -62,7 +62,6 @@ public:
#if 0
void setInput( input_item_t * );
#endif
bool
b_need_update
;
private:
input_item_t
*
p_item
;
...
...
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