Commit b4465b3c authored by Ilkka Ollakka's avatar Ilkka Ollakka

remove (seems to be) unneeded b_need_update variable

parent 57300f50
...@@ -42,7 +42,6 @@ MediaInfoDialog::MediaInfoDialog( intf_thread_t *_p_intf, ...@@ -42,7 +42,6 @@ MediaInfoDialog::MediaInfoDialog( intf_thread_t *_p_intf,
{ {
i_runs = 0; i_runs = 0;
p_item = _p_item; p_item = _p_item;
b_need_update = true;
b_cleaned = true; b_cleaned = true;
setWindowTitle( qtr( "Media information" ) ); setWindowTitle( qtr( "Media information" ) );
...@@ -133,9 +132,7 @@ void MediaInfoDialog::update( input_thread_t *p_input ) ...@@ -133,9 +132,7 @@ void MediaInfoDialog::update( input_thread_t *p_input )
/* Launch the update in all the panels */ /* Launch the update in all the panels */
vlc_object_yield( p_input ); vlc_object_yield( p_input );
update( input_GetItem(p_input), b_need_update, b_need_update ); update( input_GetItem(p_input), true, true);
b_need_update = false;
b_cleaned = false;
vlc_object_release( p_input ); vlc_object_release( p_input );
} }
......
...@@ -62,7 +62,6 @@ public: ...@@ -62,7 +62,6 @@ public:
#if 0 #if 0
void setInput( input_item_t * ); void setInput( input_item_t * );
#endif #endif
bool b_need_update;
private: private:
input_item_t *p_item; input_item_t *p_item;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment