changeset 19997:adc8bfbb3628

Fix #ifdef indentation.
author diego
date Fri, 29 Sep 2006 09:21:53 +0000
parents aa7bb6ae26a7
children b1cebdd78625
files Gui/interface.c Gui/mplayer/menu.c
diffstat 2 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/Gui/interface.c	Thu Sep 28 20:42:03 2006 +0000
+++ b/Gui/interface.c	Fri Sep 29 09:21:53 2006 +0000
@@ -286,11 +286,11 @@
  wsSetShape( &appMPlayer.mainWindow,appMPlayer.main.Mask.Image );
  wsXDNDMakeAwareness(&appMPlayer.mainWindow);
 
- #ifdef DEBUG
+#ifdef DEBUG
   mp_msg( MSGT_GPLAYER,MSGL_DBG2,"[main] depth on screen: %d\n",wsDepthOnScreen );
   mp_msg( MSGT_GPLAYER,MSGL_DBG2,"[main] parent: 0x%x\n",(int)appMPlayer.mainWindow.WindowID );
   mp_msg( MSGT_GPLAYER,MSGL_DBG2,"[main] sub: 0x%x\n",(int)appMPlayer.subWindow.WindowID );
- #endif
+#endif
 
  appMPlayer.mainWindow.ReDraw=(void *)mplMainDraw;
  appMPlayer.mainWindow.MouseHandler=mplMainMouseHandle;
--- a/Gui/mplayer/menu.c	Thu Sep 28 20:42:03 2006 +0000
+++ b/Gui/mplayer/menu.c	Fri Sep 29 09:21:53 2006 +0000
@@ -134,9 +134,9 @@
 
  if ( ( mplMenuDrawBuffer = calloc( 1,appMPlayer.menuBase.Bitmap.ImageSize ) ) == NULL )
   {
-   #ifdef DEBUG
+#ifdef DEBUG
     mp_msg( MSGT_GPLAYER,MSGL_DBG2,"[menu.h] %s",MSGTR_NEMFMR );
-   #endif
+#endif
    gtkMessageBox( GTK_MB_FATAL,MSGTR_NEMFMR );
    return;
   }
@@ -147,9 +147,9 @@
 
  wsSetShape( &appMPlayer.menuWindow,appMPlayer.menuBase.Mask.Image );
 
- #ifdef DEBUG
+#ifdef DEBUG
   mp_msg( MSGT_GPLAYER,MSGL_DBG2,"[menu.h] menu: 0x%x\n",(int)appMPlayer.menuWindow.WindowID );
- #endif
+#endif
 
  mplMenuIsInitialized=1;
  appMPlayer.menuWindow.ReDraw=mplMenuDraw;