]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/scopedarray.h
OSX adaptions
[wxWidgets.git] / include / wx / scopedarray.h
index 4175fcee62304a0ac966e966854b5ec597809a0a..e6246a235eb2068eee0eb152f341fc0e5bece1de 100644 (file)
@@ -3,7 +3,6 @@
 // Purpose:     scoped smart pointer class
 // Author:      Vadim Zeitlin
 // Created:     2009-02-03
-// RCS-ID:      $Id$
 // Copyright:   (c) Jesse Lovelace and original Boost authors (see below)
 //              (c) 2009 Vadim Zeitlin
 // Licence:     wxWindows licence
@@ -41,7 +40,7 @@ public:
     {
         if ( array != m_array )
         {
-            delete m_array;
+            delete [] m_array;
             m_array = array;
         }
     }