From 6825f30b665952864dbe35fe8329a0e4c264d4b8 Mon Sep 17 00:00:00 2001 From: erik Date: Wed, 10 Jan 2007 17:31:08 +0000 Subject: All of the files included have instances where an array is new'ed but the corresponding delete does not have the corresponding [] argument. --- (limited to 'noncore/apps/checkbook') diff --git a/noncore/apps/checkbook/listedit.cpp b/noncore/apps/checkbook/listedit.cpp index e40377b..b297d69 100644 --- a/noncore/apps/checkbook/listedit.cpp +++ b/noncore/apps/checkbook/listedit.cpp @@ -236,7 +236,7 @@ void ListEdit::fixTypes(int iColumn) colMap[i]->getItem()->setText(iColumn, colMap[i]->getValue()); delete colMap[i]; } - delete colMap; + delete [] colMap; } void ListEdit::fixTypes() -- cgit v0.9.0.2