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

This commit is contained in:
Bill Meltsner
2010-08-25 17:54:19 -05:00
parent 2cc3fb4715
commit 6c456ea93b
+1 -1
View File
@@ -43,7 +43,7 @@ namespace font
GlyphData::~GlyphData()
{
delete[] data;
delete data;
}
void * GlyphData::getData() const