Commit ed78f652639cba8639c0e2edf38c7f45f5afaf14

henry 2002-08-26T08:53:46

Added some braces

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
diff --git a/src/FTPixmapGlyph.cpp b/src/FTPixmapGlyph.cpp
index 3be319f..15202b7 100755
--- a/src/FTPixmapGlyph.cpp
+++ b/src/FTPixmapGlyph.cpp
@@ -1,5 +1,6 @@
 #include    "FTPixmapGlyph.h"
 
+#include "mmgr.h"
 
 FTPixmapGlyph::FTPixmapGlyph( FT_Glyph glyph)
 :   FTGlyph(),
@@ -91,7 +92,9 @@ FTPixmapGlyph::FTPixmapGlyph( FT_Glyph glyph)
 FTPixmapGlyph::~FTPixmapGlyph()
 {
     if( data)
+    {
         delete [] data;
+    }
 }