]> git.sesse.net Git - vlc/commitdiff
Qt: remove unneeded whitespace that blocks normalized signatures
authorJean-Baptiste Kempf <jb@videolan.org>
Tue, 16 Aug 2011 16:33:28 +0000 (18:33 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Tue, 16 Aug 2011 17:06:53 +0000 (19:06 +0200)
modules/gui/qt4/components/sout/sout_widgets.cpp
modules/gui/qt4/qt4.hpp

index ed37d64959fd57102c006845ed9683429a40d616..ebf952a642eb551c4be88b4baa3f426277f22062 100644 (file)
@@ -80,8 +80,8 @@ void SoutInputBox::setMRL( const QString& mrl )
     sourceValueLabel->setText( type );
 }
 
-#define CT( x ) connect( x, SIGNAL( textChanged( const QString& ) ), this, SIGNAL( mrlUpdated() ) );
-#define CS( x ) connect( x, SIGNAL( valueChanged( int ) ), this, SIGNAL( mrlUpdated() ) );
+#define CT( x ) connect( x, SIGNAL(textChanged(QString)), this, SIGNAL(mrlUpdated()) );
+#define CS( x ) connect( x, SIGNAL(valueChanged(int)), this, SIGNAL(mrlUpdated()) );
 
 /* FileDest Box */
 FileDestBox::FileDestBox( QWidget *_parent ) : VirtualDestBox( _parent )
index d587657fd6cf9e1e7002e3a1d3aaa478eca5f0c8..d525f96004d677bd8c069a7b5ffa967b9832a1b6 100644 (file)
@@ -91,10 +91,10 @@ struct intf_sys_t
 #define qtu( i ) ((i).toUtf8().constData())
 
 #define CONNECT( a, b, c, d ) \
-        connect( a, SIGNAL( b ), c, SLOT(d) )
+        connect( a, SIGNAL(b), c, SLOT(d) )
 #define DCONNECT( a, b, c, d ) \
-        connect( a, SIGNAL( b ), c, SLOT(d), Qt::DirectConnection )
-#define BUTTONACT( b, a ) connect( b, SIGNAL( clicked() ), this, SLOT(a) )
+        connect( a, SIGNAL(b), c, SLOT(d), Qt::DirectConnection )
+#define BUTTONACT( b, a ) connect( b, SIGNAL(clicked()), this, SLOT(a) )
 
 #define BUTTON_SET( button, text, tooltip )  \
     button->setText( text );                 \