summaryrefslogtreecommitdiffstats
path: root/Gui
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-09-29 09:21:53 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-09-29 09:21:53 +0000
commit3460d03a8412a37ab6bd1bc2e23a71e039a45048 (patch)
tree9a519005da62ebe918eccad7f8c631842cfafdb3 /Gui
parent448a04d2bbf7db4767cf733ba70ecbca37b90093 (diff)
downloadmpv-3460d03a8412a37ab6bd1bc2e23a71e039a45048.tar.bz2
mpv-3460d03a8412a37ab6bd1bc2e23a71e039a45048.tar.xz
Fix #ifdef indentation.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20003 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui')
-rw-r--r--Gui/interface.c4
-rw-r--r--Gui/mplayer/menu.c8
2 files changed, 6 insertions, 6 deletions
diff --git a/Gui/interface.c b/Gui/interface.c
index 2da6e96f77..b2ef7247e0 100644
--- a/Gui/interface.c
+++ b/Gui/interface.c
@@ -286,11 +286,11 @@ void guiInit( void )
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;
diff --git a/Gui/mplayer/menu.c b/Gui/mplayer/menu.c
index a203950e6f..e8ef5cad97 100644
--- a/Gui/mplayer/menu.c
+++ b/Gui/mplayer/menu.c
@@ -134,9 +134,9 @@ void mplMenuInit( void )
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 @@ void mplMenuInit( void )
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;