]> git.sesse.net Git - vlc/commitdiff
Qt4 - Space fixes.
authorJean-Baptiste Kempf <jb@videolan.org>
Sat, 2 Jun 2007 18:24:15 +0000 (18:24 +0000)
committerJean-Baptiste Kempf <jb@videolan.org>
Sat, 2 Jun 2007 18:24:15 +0000 (18:24 +0000)
modules/gui/qt4/dialogs_provider.hpp
modules/gui/qt4/qt4.hpp

index f0a8a6734de47cb017cccf46a84ea058cb4efafb..dc135ef434ed64a67fe0b9439dbea5982faa0eb4 100644 (file)
@@ -19,7 +19,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. 
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 #ifndef _DIALOGS_PROVIDER_H_
index af652e7b504cdd5fecaca9b90b1242524d90be28..266d4f4a31bb1dcd6ee34e916bdda5deb6d36d01 100644 (file)
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. 
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 #ifndef _QVLC_H_
@@ -64,20 +64,20 @@ struct intf_sys_t
 #define BUTTONACT( b, a ) connect( b, SIGNAL( clicked() ), this, SLOT(a) )
 #define ON_TIMEOUT( act ) CONNECT( THEDP->fixed_timer, timeout(), this, act )
 
-#define BUTTON_SET( button, text, tooltip ) \
-    button->setText( text ); \
+#define BUTTON_SET( button, text, tooltip )  \
+    button->setText( text );                 \
     button->setToolTip( tooltip );
 
 #define BUTTON_SET_ACT( button, text, tooltip, thisslot ) \
-    BUTTON_SET( button, text, tooltip ); \
+    BUTTON_SET( button, text, tooltip );                  \
     BUTTONACT( button, thisslot );
 
-#define BUTTON_SET_IMG( button, text, image, tooltip ) \
-    BUTTON_SET( button, text, tooltip ); \
+#define BUTTON_SET_IMG( button, text, image, tooltip )    \
+    BUTTON_SET( button, text, tooltip );                  \
     button->setIcon( QIcon( ":/pixmaps/"#image ) );
 
 #define BUTTON_SET_ACT_I( button, text, image, tooltip, thisslot ) \
-    BUTTON_SET_IMG( button, text, image, tooltip ); \
+    BUTTON_SET_IMG( button, text, image, tooltip );                \
     BUTTONACT( button, thisslot );
 
 static int DialogEvent_Type = QEvent::User + 1;