Commit 65d1e784 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt, simplification: kill dead code

parent 7f9d5e6d
...@@ -958,19 +958,6 @@ MainInputManager::MainInputManager( intf_thread_t *_p_intf ) ...@@ -958,19 +958,6 @@ MainInputManager::MainInputManager( intf_thread_t *_p_intf )
DCONNECT( this, inputChanged( input_thread_t * ), DCONNECT( this, inputChanged( input_thread_t * ),
im, setInput( input_thread_t * ) ); im, setInput( input_thread_t * ) );
/* emit check if playlist has already started playing */
input_thread_t *p_input = playlist_CurrentInput( THEPL );
if( p_input )
{
input_item_t *p_item = input_GetItem( p_input );
if( p_item )
{
IMEvent *event = new IMEvent( ItemChanged_Type, p_item );
customEvent( event );
delete event;
}
vlc_object_release( p_input );
}
} }
MainInputManager::~MainInputManager() MainInputManager::~MainInputManager()
...@@ -1042,6 +1029,7 @@ void MainInputManager::customEvent( QEvent *event ) ...@@ -1042,6 +1029,7 @@ void MainInputManager::customEvent( QEvent *event )
case LeafToParent_Type: case LeafToParent_Type:
imEv = static_cast<IMEvent*>( event ); imEv = static_cast<IMEvent*>( event );
emit leafBecameParent( imEv->p_item ); emit leafBecameParent( imEv->p_item );
return;
default: default:
if( type != ItemChanged_Type ) return; if( type != ItemChanged_Type ) return;
} }
......
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
#include "qt4.hpp" #include "qt4.hpp"
#include "input_manager.hpp" /* THEMIM creation */ #include "input_manager.hpp" /* THEMIM destruction */
#include "dialogs_provider.hpp" /* THEDP creation */ #include "dialogs_provider.hpp" /* THEDP creation */
#include "main_interface.hpp" /* MainInterface creation */ #include "main_interface.hpp" /* MainInterface creation */
#include "dialogs/help.hpp" /* Launch Update */ #include "dialogs/help.hpp" /* Launch Update */
......
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