]> git.saurik.com Git - wxWidgets.git/blobdiff - src/html/mod_tables.cpp
PCX handler now working for reading (8bit and 24bit images).
[wxWidgets.git] / src / html / mod_tables.cpp
index b3d99ecb213251ab71191a14249a59e20167f33c..01bc6552ab5c4211d71e33f6fb6fb372ceaedf65 100644 (file)
@@ -169,7 +169,7 @@ void wxHtmlTableCell::ReallocRows(int rows)
     m_CellInfo = (cellStruct**) realloc(m_CellInfo, sizeof(cellStruct*) * rows);
     if (m_NumCols != 0) {
         int x = rows - 1;
-        m_CellInfo[x] = new cellStruct[m_NumCols];
+        m_CellInfo[x] = (cellStruct*) malloc(sizeof(cellStruct) * m_NumCols);
         for (int i = 0; i < m_NumCols; i++)
             m_CellInfo[x][i].flag = cellFree;
     }