Browse Source

fixed scalar vs. vector delete issue in GlyphData::pad

Bill Meltsner 15 years ago
parent
commit
6c456ea93b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/modules/font/GlyphData.cpp

+ 1 - 1
src/modules/font/GlyphData.cpp

@@ -43,7 +43,7 @@ namespace font
 
 
 	GlyphData::~GlyphData()
 	GlyphData::~GlyphData()
 	{
 	{
-		delete[] data;
+		delete data;
 	}
 	}
 
 
 	void * GlyphData::getData() const
 	void * GlyphData::getData() const