diff -r de3d5b6102ac -r 5e51caaeeb72 windowing/windowserver/nga/SERVER/openwfc/screen.cpp --- a/windowing/windowserver/nga/SERVER/openwfc/screen.cpp Tue Apr 27 17:59:32 2010 +0300 +++ b/windowing/windowserver/nga/SERVER/openwfc/screen.cpp Tue May 11 17:25:23 2010 +0300 @@ -1,4 +1,4 @@ -// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). +// Copyright (c) 2006-2010 Nokia Corporation and/or its subsidiary(-ies). // All rights reserved. // This component and the accompanying materials are made available // under the terms of "Eclipse Public License v1.0" @@ -101,7 +101,7 @@ CScreen::CFallbackMap::~CFallbackMap() { - delete iMap; + delete []iMap; } void CScreen::CFallbackMap::ConstructL() @@ -228,7 +228,7 @@ newMap = new TInt [maxSize]; if (newMap) { - delete iMap; + delete []iMap; iMap = newMap; iMapSize = maxSize; }