AGI: Fix delete/delete[]

This commit is contained in:
Willem Jan Palenstijn 2013-04-21 15:34:22 +02:00
parent 9ffec86b5d
commit b91da80756

View file

@ -98,7 +98,7 @@ void WagProperty::setDefaults() {
}
void WagProperty::deleteData() {
delete _propData;
delete[] _propData;
_propData = NULL;
}