summaryrefslogtreecommitdiffstats
path: root/Gui
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-04 20:33:29 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-04 20:33:29 +0000
commit6a75d0503860475a166ca28f59ad5c81002af4b2 (patch)
treebce970ccc97549933b80f0b2a48e1359e706b97d /Gui
parent643657bce8d04dcab9319b0ac801c5b4efce2b89 (diff)
downloadmpv-6a75d0503860475a166ca28f59ad5c81002af4b2.tar.bz2
mpv-6a75d0503860475a166ca28f59ad5c81002af4b2.tar.xz
missing newlines fixed
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2083 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui')
-rw-r--r--Gui/bitmap/bmp/bmp.c3
-rw-r--r--Gui/bitmap/tga/tga.c3
-rw-r--r--Gui/error.h3
-rw-r--r--Gui/mplayer/gtk/pl.h3
-rw-r--r--Gui/skin/font.h3
-rw-r--r--Gui/wm/widget.h3
-rw-r--r--Gui/wm/ws.h3
-rw-r--r--Gui/wm/wsconv.c6
-rw-r--r--Gui/wm/wsconv.h3
9 files changed, 20 insertions, 10 deletions
diff --git a/Gui/bitmap/bmp/bmp.c b/Gui/bitmap/bmp/bmp.c
index cd57da789a..b362d3f9a3 100644
--- a/Gui/bitmap/bmp/bmp.c
+++ b/Gui/bitmap/bmp/bmp.c
@@ -111,4 +111,5 @@ int bmpRead( unsigned char * fname,txSample * bF )
return 0;
}
-#endif \ No newline at end of file
+#endif
+
diff --git a/Gui/bitmap/tga/tga.c b/Gui/bitmap/tga/tga.c
index bf8e3e849c..8a33f6a07e 100644
--- a/Gui/bitmap/tga/tga.c
+++ b/Gui/bitmap/tga/tga.c
@@ -186,4 +186,5 @@ void tgaWriteBuffer( char * fname,unsigned char * Buffer,int sx,int sy,int BPP )
tmp.ImageSize=sx * sy * ( BPP / 8 );
tmp.Image=Buffer;
tgaWriteTexture( fname,&tmp );
-} \ No newline at end of file
+}
+
diff --git a/Gui/error.h b/Gui/error.h
index 5e66b868a7..7ce79e7cde 100644
--- a/Gui/error.h
+++ b/Gui/error.h
@@ -18,4 +18,5 @@ typedef void (*errorTHandler)( int critical,const char * format, ... );
extern errorTHandler message;
extern errorTHandler dbprintf;
-#endif \ No newline at end of file
+#endif
+
diff --git a/Gui/mplayer/gtk/pl.h b/Gui/mplayer/gtk/pl.h
index 6d8372d1f0..e4b96673e4 100644
--- a/Gui/mplayer/gtk/pl.h
+++ b/Gui/mplayer/gtk/pl.h
@@ -300,4 +300,5 @@ GtkWidget* create_PlayList( void )
return PlayList;
}
-#endif \ No newline at end of file
+#endif
+
diff --git a/Gui/skin/font.h b/Gui/skin/font.h
index 985286b6bf..0b082bf8a1 100644
--- a/Gui/skin/font.h
+++ b/Gui/skin/font.h
@@ -28,4 +28,5 @@ extern int fntFindID( char * name );
extern int fntRead( char * path,char * fname,int id );
extern txSample * fntRender( int id,int px,int sx,char * fmt,... );
-#endif \ No newline at end of file
+#endif
+
diff --git a/Gui/wm/widget.h b/Gui/wm/widget.h
index b7751568ea..1174b3ff79 100644
--- a/Gui/wm/widget.h
+++ b/Gui/wm/widget.h
@@ -1,2 +1,3 @@
-#define wgIsRect( X,Y,tX,tY,bX,bY ) ( ( X > tX )&&( Y > tY )&&( X < bX )&&( Y < bY ) ) \ No newline at end of file
+#define wgIsRect( X,Y,tX,tY,bX,bY ) ( ( X > tX )&&( Y > tY )&&( X < bX )&&( Y < bY ) )
+
diff --git a/Gui/wm/ws.h b/Gui/wm/ws.h
index 0a4ae445f2..15526a4090 100644
--- a/Gui/wm/ws.h
+++ b/Gui/wm/ws.h
@@ -237,4 +237,5 @@ extern int wsGetOutMask( void );
extern void wsScreenSaverOn( Display *mDisplay );
extern void wsScreenSaverOff( Display * mDisplay );
-#endif \ No newline at end of file
+#endif
+
diff --git a/Gui/wm/wsconv.c b/Gui/wm/wsconv.c
index 935672cf09..1f76be411e 100644
--- a/Gui/wm/wsconv.c
+++ b/Gui/wm/wsconv.c
@@ -1,6 +1,7 @@
-#include <stdlib.h>
#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
#include "../../config.h"
#ifdef xHAVE_MMX
@@ -201,4 +202,5 @@ void initConverter( void )
rgb32_g_mask.q = 0x0000FF000000FF00LL; // Mask for the greens of 2 RGB32 pixels
rgb32_b_mask.q = 0x00FF000000FF0000LL; // Mask for the blues of 2 RGB32 pixels
#endif
-} \ No newline at end of file
+}
+
diff --git a/Gui/wm/wsconv.h b/Gui/wm/wsconv.h
index 9005c4a90a..2beac88ad0 100644
--- a/Gui/wm/wsconv.h
+++ b/Gui/wm/wsconv.h
@@ -36,4 +36,5 @@ extern void RGB565_to_RGB888_c( unsigned char * in_pixels, unsigned char * out_p
extern void initConverter( void );
-#endif \ No newline at end of file
+#endif
+