]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/input_manager.cpp
Qt4 - Try to improve quitting of the application... Ref #1397
[vlc] / modules / gui / qt4 / input_manager.cpp
index 129d545fb3d98c249186b796d36de015e43e3266..4827a925ee34d3da907de7e8ec5b59e36910d9df 100644 (file)
@@ -213,7 +213,6 @@ void InputManager::customEvent( QEvent *event )
          delInput();
          return;
     }
-         
 
     IMEvent *ime = static_cast<IMEvent *>(event);
 
@@ -288,7 +287,7 @@ void InputManager::UpdateRate( void )
          i_rate = i_new_rate;
          /* Update rate */
          emit rateChanged( i_rate );
-     } 
+     }
 }
 
 void InputManager::UpdateMeta( void )
@@ -479,8 +478,8 @@ MainInputManager::MainInputManager( intf_thread_t *_p_intf ) : QObject(NULL),
 
 MainInputManager::~MainInputManager()
 {
-    if( p_input ) 
-    { 
+    if( p_input )
+    {
        vlc_object_release( p_input );
        emit inputChanged( NULL );
     }
@@ -500,7 +499,7 @@ void MainInputManager::customEvent( QEvent *event )
         emit volumeChanged();
         return;
     }
-    
+
     if( VLC_OBJECT_INTF == p_intf->i_object_type )
     {
         vlc_mutex_lock( &p_intf->change_lock );