]> git.sesse.net Git - vlc/commitdiff
Qt4 - trailing spaces... Post-commit script ?
authorJean-Baptiste Kempf <jb@videolan.org>
Mon, 17 Dec 2007 00:46:54 +0000 (00:46 +0000)
committerJean-Baptiste Kempf <jb@videolan.org>
Mon, 17 Dec 2007 00:46:54 +0000 (00:46 +0000)
modules/gui/qt4/main_interface.cpp
modules/gui/qt4/menus.hpp
modules/gui/qt4/qt4.hpp

index b3945e9551cbc154bddcf0ea30342ddc131c520f..8261c9496772712b29625ca2be5f3fd9abeb6476 100644 (file)
@@ -205,12 +205,12 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
      * Input Manager    *
      ********************/
     MainInputManager::getInstance( p_intf );
-    
+
     /********************
      * Various CONNECTs *
      ********************/
     /* Connect the input manager to the GUI elements it manages */
-    
+
     /* It is also connected to the control->slider, see the ControlsWidget */
     CONNECT( THEMIM->getIM(), positionUpdated( float, int, int ),
              this, setDisplayPosition( float, int, int ) );
@@ -239,7 +239,7 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
     }
 
     /**
-     * CONNECTS on PLAY_STATUS 
+     * CONNECTS on PLAY_STATUS
      **/
     /* Status on the main controller */
     CONNECT( THEMIM->getIM(), statusChanged( int ), this, setStatus( int ) );
@@ -274,12 +274,12 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
 
     /* VideoWidget connect mess to avoid different threads speaking to each other */
     CONNECT( this, askReleaseVideo( void * ), this, releaseVideoSlot( void * ) );
-    CONNECT( this, askVideoToResize( unsigned int, unsigned int ), 
+    CONNECT( this, askVideoToResize( unsigned int, unsigned int ),
              videoWidget, SetSizing( unsigned int, unsigned int ) );
     CONNECT( this, askUpdate(), this, doComponentsUpdate() );
 
     CONNECT( dockPL, topLevelChanged( bool ), this, doComponentsUpdate() );
-    CONNECT( controls, advancedControlsToggled( bool ), 
+    CONNECT( controls, advancedControlsToggled( bool ),
              this, doComponentsUpdate() );
 
     resize( settings->value( "size", QSize( 350, 60 ) ).toSize() );
@@ -295,7 +295,7 @@ MainInterface::~MainInterface()
 
     settings->beginGroup( "MainWindow" );
     settings->setValue( "playlist-floats", dockPL->isFloating() );
-    settings->setValue( "adv-controls", 
+    settings->setValue( "adv-controls",
                         getControlsVisibilityStatus() & CONTROLS_ADVANCED );
     settings->setValue( "pos", pos() );
     settings->setValue( "size", size() );
@@ -518,7 +518,7 @@ QSize MainInterface::sizeHint() const
 {
     int nwidth = controls->sizeHint().width();
     int nheight = controls->sizeHint().height();
-                + menuBar()->size().height() 
+                + menuBar()->size().height()
                 + statusBar()->size().height();
 
     msg_Dbg( p_intf, "1 %i %i", nheight, nwidth );
index d06457dee2fd97f2725ec96e7a5767fb0275391d..339794dc5779c86dc72c666b06568a050583ce7a 100644 (file)
@@ -91,7 +91,7 @@ public:
     static void MiscPopupMenu( intf_thread_t * );
     static void PopupMenu( intf_thread_t *, bool );
     static void PopupMenuStaticEntries( intf_thread_t *p_intf, QMenu *menu );
-    static void PopupMenuControlEntries( QMenu *menu, intf_thread_t *p_intf, 
+    static void PopupMenuControlEntries( QMenu *menu, intf_thread_t *p_intf,
                                          input_thread_t *p_input );
     /* Systray */
     static void updateSystrayMenu( MainInterface *,intf_thread_t  *,
index 18a5452f453325e998a2dbb3c26e34405608d03a..94b283a0fdbf7ae6b99c29e66468e3029b2aea99 100644 (file)
@@ -92,7 +92,7 @@ struct intf_sys_t
 
 #define TOGGLEV( x ) { if( x->isVisible() ) x->hide();          \
             else  x->show(); }
-            
+
 #define MAX(A,B) ( (A) > (B) ? (A):(B))
 
 static int DialogEvent_Type = QEvent::User + 1;