]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/input_manager.cpp
Qt4 - Typos/Code conventions/spaces/Cleaning.
[vlc] / modules / gui / qt4 / input_manager.cpp
index 241999b111d96040c0d4d0d4a3edc21dfb0e8ef1..6a5d19e50fb283f1fab16ac84fb746b6fcbf5eda 100644 (file)
@@ -38,7 +38,7 @@ InputManager::InputManager( QObject *parent, intf_thread_t *_p_intf) :
                            QObject( parent ), p_intf( _p_intf )
 {
     i_old_playing_status = END_S;
-    old_name="";
+    old_name = "";
     p_input = NULL;
     i_rate = 0;
     ON_TIMEOUT( update() );
@@ -176,7 +176,7 @@ void InputManager::update()
     if( i_old_playing_status != val.i_int )
     {
         i_old_playing_status = val.i_int;
-        emit statusChanged(  val.i_int == PAUSE_S ? PAUSE_S : PLAYING_S );
+        emit statusChanged( val.i_int == PAUSE_S ? PAUSE_S : PLAYING_S );
     }
 }