Commit 29f37277fb302d151ac625cfa0c72438bdd55570

henry 2001-11-04T04:55:43

Unix line endings

diff --git a/include/FTFont.h b/include/FTFont.h
index 7e5c471..245b511 100755
--- a/include/FTFont.h
+++ b/include/FTFont.h
@@ -10,7 +10,6 @@
 
 #include "FTFace.h"
 
-
 class FTGlyphContainer;
 class FTGlyph;
 
diff --git a/include/FTGLBitmapFont.h b/include/FTGLBitmapFont.h
index 3a3b2b7..abdde84 100755
--- a/include/FTGLBitmapFont.h
+++ b/include/FTGLBitmapFont.h
@@ -1,7 +1,6 @@
 #ifndef		__FTGLBitmapFont__
 #define		__FTGLBitmapFont__
 
-
 #include "FTGL.h"
 
 #include "FTFont.h"
diff --git a/include/FTGLOutlineFont.h b/include/FTGLOutlineFont.h
index 698fe34..474c0f5 100755
--- a/include/FTGLOutlineFont.h
+++ b/include/FTGLOutlineFont.h
@@ -7,6 +7,7 @@
 
 class FTGlyph;
 
+
 /**
  * FTGLOutlineFont is a specialisation of the FTFont class for handling
  * Vector Outline fonts
diff --git a/include/FTGLPixmapFont.h b/include/FTGLPixmapFont.h
index 9f7fe7b..50f2032 100755
--- a/include/FTGLPixmapFont.h
+++ b/include/FTGLPixmapFont.h
@@ -8,6 +8,7 @@
 
 class FTGlyph;
 
+
 /**
  * FTGLPixmapFont is a specialisation of the FTFont class for handling
  * Pixmap (Grey Scale) fonts
diff --git a/include/FTGLPolygonFont.h b/include/FTGLPolygonFont.h
index fb2d436..82132f5 100755
--- a/include/FTGLPolygonFont.h
+++ b/include/FTGLPolygonFont.h
@@ -7,6 +7,7 @@
 
 class FTGlyph;
 
+
 /**
  * FTGLPolygonFont is a specialisation of the FTFont class for handling
  * tesselated Polygon Mesh fonts
diff --git a/include/FTGLTextureFont.h b/include/FTGLTextureFont.h
index 4edf316..87f956d 100755
--- a/include/FTGLTextureFont.h
+++ b/include/FTGLTextureFont.h
@@ -6,6 +6,7 @@
 
 class FTTextureGlyph;
 
+
 /**
  * FTGLTextureFont is a specialisation of the FTFont class for handling
  * Texture mapped fonts
diff --git a/include/FTGlyphContainer.h b/include/FTGlyphContainer.h
index 1f51ae2..2eaa7b0 100755
--- a/include/FTGlyphContainer.h
+++ b/include/FTGlyphContainer.h
@@ -14,6 +14,7 @@ class FTGlyph;
 
 using namespace std;
 
+
 /**
  * FTGlyphContainer holds the post processed FTGlyph objects.
  *
diff --git a/src/FTFont.cpp b/src/FTFont.cpp
index 630f129..ad1fb1d 100755
--- a/src/FTFont.cpp
+++ b/src/FTFont.cpp
@@ -190,3 +190,4 @@ void FTFont::render( const wchar_t* string )
 		++c;
 	}
 }
+
diff --git a/src/FTGLBitmapFont.cpp b/src/FTGLBitmapFont.cpp
index 6ad3d12..e0cb944 100755
--- a/src/FTGLBitmapFont.cpp
+++ b/src/FTGLBitmapFont.cpp
@@ -54,3 +54,4 @@ void FTGLBitmapFont::render( const wchar_t* string)
 	glPopClientAttrib();
 
 }
+
diff --git a/src/FTGLOutlineFont.cpp b/src/FTGLOutlineFont.cpp
index 3b5aada..eb5a342 100755
--- a/src/FTGLOutlineFont.cpp
+++ b/src/FTGLOutlineFont.cpp
@@ -57,3 +57,4 @@ void FTGLOutlineFont::render( const wchar_t* string)
 	glPopAttrib();
 
 }
+
diff --git a/src/FTGLPixmapFont.cpp b/src/FTGLPixmapFont.cpp
index a5a3542..b2023b5 100755
--- a/src/FTGLPixmapFont.cpp
+++ b/src/FTGLPixmapFont.cpp
@@ -53,3 +53,4 @@ void FTGLPixmapFont::render( const wchar_t* string)
 
 }
 
+
diff --git a/src/FTGLPolygonFont.cpp b/src/FTGLPolygonFont.cpp
index 9023aa8..bd81f9b 100755
--- a/src/FTGLPolygonFont.cpp
+++ b/src/FTGLPolygonFont.cpp
@@ -4,7 +4,6 @@
 #include	"FTPolyGlyph.h"
 
 
-
 FTGLPolygonFont::FTGLPolygonFont()
 {}
 
diff --git a/src/FTGlyphContainer.cpp b/src/FTGlyphContainer.cpp
index c643b6f..1722cd4 100755
--- a/src/FTGlyphContainer.cpp
+++ b/src/FTGlyphContainer.cpp
@@ -15,7 +15,6 @@ FTGlyphContainer::FTGlyphContainer( FTFace* f, unsigned int g, bool p)
 }
 
 
-
 FTGlyphContainer::~FTGlyphContainer()
 {
 	vector<FTGlyph*>::iterator iter;