]> git.sesse.net Git - vlc/commitdiff
Qt4 - Remove trailing spaces...
authorJean-Baptiste Kempf <jb@videolan.org>
Sun, 10 Feb 2008 09:31:17 +0000 (09:31 +0000)
committerJean-Baptiste Kempf <jb@videolan.org>
Sun, 10 Feb 2008 09:31:17 +0000 (09:31 +0000)
13 files changed:
modules/gui/qt4/components/playlist/playlist.cpp
modules/gui/qt4/components/playlist/standardpanel.cpp
modules/gui/qt4/dialogs/errors.cpp
modules/gui/qt4/dialogs/help.cpp
modules/gui/qt4/dialogs/interaction.hpp
modules/gui/qt4/dialogs/podcast_configuration.hpp
modules/gui/qt4/dialogs/sout.hpp
modules/gui/qt4/dialogs_provider.hpp
modules/gui/qt4/input_manager.hpp
modules/gui/qt4/main_interface.cpp
modules/gui/qt4/qt4.hpp
modules/gui/qt4/util/registry.cpp
modules/gui/qt4/util/registry.hpp

index 3bb2cdae401b201a96018ef63fa6f98f12245484..b23cb91d906e9838078240a5ee54c998f4cf69b3 100644 (file)
@@ -72,7 +72,7 @@ PlaylistWidget::PlaylistWidget( intf_thread_t *_p_i, QSettings *settings, QWidge
     CONNECT( selector, activated( int ), rightPanel, setRoot( int ) );
 
     /* Connect the activated() to the rootChanged() signal
-       This will be used by StandardPLPanel to setCurrentRootId, that will 
+       This will be used by StandardPLPanel to setCurrentRootId, that will
        change the label of the addButton  */
     connect( selector, SIGNAL( activated( int ) ),
              this, SIGNAL( rootChanged( int ) ) );
index 5e43796c62bbc254ff68275aa694a9ccf7e1da0f..8593804dfb9662fc09bfcebcf33beae0fc7677fa 100644 (file)
@@ -325,7 +325,7 @@ void StandardPLPanel::removeItem( int i_id )
     model->removeItem( i_id );
 }
 
-/* Delete and Suppr key remove the selection 
+/* Delete and Suppr key remove the selection
    FilterKey function and code function */
 void StandardPLPanel::keyPressEvent( QKeyEvent *e )
 {
index 3de1700e0522cf95b8bf24d0687dcb597b33d753..d8c785eb73a2fffe93e915c1780e003a11757e73 100644 (file)
@@ -36,8 +36,8 @@
 
 ErrorsDialog *ErrorsDialog::instance = NULL;
 
-ErrorsDialog::ErrorsDialog( QWidget *parent, intf_thread_t *_p_intf ) 
-            : QVLCDialog( parent, _p_intf )
+ErrorsDialog::ErrorsDialog( QWidget *parent, intf_thread_t *_p_intf )
+             : QVLCDialog( parent, _p_intf )
 {
     setWindowTitle( qtr( "Errors" ) );
     resize( 500 , 300 );
index f70b316ae62dc0fba1e12cda638b27f454465312..5f33c31e4a0cfd4755eac6724f18e6934450e3b4 100644 (file)
@@ -125,7 +125,7 @@ AboutDialog::AboutDialog( QWidget *parent, intf_thread_t *_p_intf)
             + qtr( "Based on SVN revision: " ) + qfu( VLC_Changeset() ) + ".\n"
             + qtr( "You are using the Qt4 Interface.\n\n" )
             + qtr( "Copyright (c) " COPYRIGHT_YEARS " by the VideoLAN Team.\n" )
-            + "vlc@videolan.org, http://www.videolan.org" ); 
+            + "vlc@videolan.org, http://www.videolan.org" );
     infoLabel->setWordWrap( infoLabel );
 
     QLabel *iconVLC2 = new QLabel;
@@ -288,7 +288,7 @@ void UpdateDialog::updateNotify( bool b_result )
         {
             b_checked = true;
             updateButton->setText( "Download" );
-            updateLabel->setText( qtr( "There is a new version of vlc :\n" ) 
+            updateLabel->setText( qtr( "There is a new version of vlc :\n" )
                                 + qfu( p_update->release.psz_desc )  );
         }
         else
index d36d7a6d2c6f51364c35e2baf9cef0654fd0f042..1df4baaf6ac97613cd3721b28dc20980d44d1ebd 100644 (file)
@@ -24,8 +24,8 @@
 #ifndef _INTERACTION_H_
 #define _INTERACTION_H_
 
-#ifdef HAVE_CONFIG_H 
-# include "config.h" 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
 #endif
 
 #include <vlc/vlc.h>
index 796b12e0cc47151f3d9be4a61d2e4f554d787435..f119ed69b15cd620ef09e3247b338ee8598092e4 100644 (file)
@@ -34,7 +34,7 @@ public:
     static PodcastConfigDialog * getInstance( intf_thread_t *p_intf )
     {
         if( !instance )
-            instance = new PodcastConfigDialog( (QWidget *)p_intf->p_sys->p_mi, 
+            instance = new PodcastConfigDialog( (QWidget *)p_intf->p_sys->p_mi,
                                                 p_intf );
         return instance;
     }
index 97e80f19a0329cc7daafd91d4bfb5eb7c7242832..b01812d9bed6b5f6ad722760dbf3de8c832e94a5 100644 (file)
@@ -24,8 +24,8 @@
 #ifndef _SOUT_DIALOG_H_
 #define _SOUT_DIALOG_H_
 
-#ifdef HAVE_CONFIG_H 
-# include "config.h" 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
 #endif
 
 #include <vlc/vlc.h>
index 93f36458841de05165aaa80ae501858a1b522a3e..7ae78c7a4543f51507ec1636f0920d40998d03d7 100644 (file)
@@ -25,8 +25,8 @@
 #ifndef _DIALOGS_PROVIDER_H_
 #define _DIALOGS_PROVIDER_H_
 
-#ifdef HAVE_CONFIG_H 
-# include "config.h" 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
 #endif
 
 #include <assert.h>
index 81e7ebd561d047587a0465efb7af1d082836e51b..0cc7b4153db71c73c1232836ffc6f900b3d51923 100644 (file)
@@ -24,8 +24,8 @@
 #ifndef _INPUT_MANAGER_H_
 #define _INPUT_MANAGER_H_
 
-#ifdef HAVE_CONFIG_H 
-# include "config.h" 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
 #endif
 
 #include <vlc/vlc.h>
index 31ff466dc67f53934c26e4b9e839d253642cf980..bc5ff63e187ae8e5bfd2c1823421cfbe3f662cbf 100644 (file)
@@ -93,8 +93,8 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
 {
     /* Variables initialisation */
     // need_components_update = false;
-    bgWidget = NULL; 
-    videoWidget = NULL; 
+    bgWidget = NULL;
+    videoWidget = NULL;
     playlistWidget = NULL;
     sysTray = NULL;
     videoIsActive = false;
index d0c4283f552f4d2abb0ca980c454d1b567189ce1..2883e9d1b8c1c662181973cfd34516ca2a342dd6 100644 (file)
@@ -25,8 +25,8 @@
 #ifndef _QVLC_H_
 #define _QVLC_H_
 
-#ifdef HAVE_CONFIG_H 
-# include "config.h" 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
 #endif
 
 #include <vlc/vlc.h>
index 717170af8c63bfd69d0e0de1e8e7d00aa34b8cc3..05b21fb4429ddcac2e6b747821e5d32fe20c66ee 100644 (file)
@@ -187,22 +187,22 @@ double QVLCRegistry::ReadRegistryDouble( const char *path, const char *valueName
     return default_value;
 }
 
-int QVLCRegistry::DeleteValue( char *path, char *valueName ) 
+int QVLCRegistry::DeleteValue( char *path, char *valueName )
 {
-    HKEY keyHandle; 
+    HKEY keyHandle;
     long result;
     if( (result = RegOpenKeyEx(m_RootKey, path, 0, KEY_WRITE, &keyHandle)) == ERROR_SUCCESS)
     {
         result = RegDeleteValue(keyHandle, valueName);
         RegCloseKey(keyHandle);
     }
-    //ERROR_SUCCESS = ok everything else you have a problem*g*,  
+    //ERROR_SUCCESS = ok everything else you have a problem*g*,
     return result;
 }
 
-long QVLCRegistry::DeleteKey( char *path, char *keyName ) 
+long QVLCRegistry::DeleteKey( char *path, char *keyName )
 {
-    HKEY keyHandle; 
+    HKEY keyHandle;
     long result;
     if( (result = RegOpenKeyEx(m_RootKey, path, 0, KEY_WRITE, &keyHandle)) == ERROR_SUCCESS)
     {
@@ -212,7 +212,7 @@ long QVLCRegistry::DeleteKey( char *path, char *keyName )
         result = RegDeleteKey(keyHandle, keyName);
         RegCloseKey(keyHandle);
     }
-    //ERROR_SUCCESS = ok everything else you have a problem*g*,  
+    //ERROR_SUCCESS = ok everything else you have a problem*g*,
     return result;
 }
 
index 5b3a6f600b0aa0e41f56120d47c4b66d6a85635e..4be3c807320f8e3f725f64e9890db34b1aecd5ec 100644 (file)
@@ -45,7 +45,7 @@ public:
     bool RegistryKeyExists( const char *path);
     bool RegistryValueExists( const char *path, const char *valueName);
     int DeleteValue( char *path, char *valueName );
-    long DeleteKey( char *path, char *keyName ); 
+    long DeleteKey( char *path, char *keyName );
 };
 
 #endif