]> git.saurik.com Git - wxWidgets.git/blobdiff - src/html/mod_tables.cpp
Added wxStaticBoxSizer,
[wxWidgets.git] / src / html / mod_tables.cpp
index 3707b8026d37c41f445ac5089ae4e418ba5d79fa..01bc6552ab5c4211d71e33f6fb6fb372ceaedf65 100644 (file)
@@ -338,7 +338,7 @@ void wxHtmlTableCell::Layout(int w)
 
     /* 3.  sub-layout all cells: */
     {
-        int *ypos = (int*) malloc(sizeof(int) * (m_NumRows + 1));
+        int *ypos = new int[m_NumRows + 1];
 
         int actcol, actrow;
         int fullwid;
@@ -385,7 +385,7 @@ void wxHtmlTableCell::Layout(int w)
 
         }
         m_Height = ypos[m_NumRows];
-        free(ypos);
+        delete[] ypos;
     }
 }