]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed a typo (_ instead of wxT)
authorVáclav Slavík <vslavik@fastmail.fm>
Mon, 18 Feb 2002 23:31:23 +0000 (23:31 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Mon, 18 Feb 2002 23:31:23 +0000 (23:31 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14300 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

contrib/src/gizmos/multicell.cpp

index c09a203a731545c09166e5dcc7545f1e36fe0c91..25497c80ddd0d08e25307b67d2eede9b2c30e272 100644 (file)
@@ -644,7 +644,7 @@ void wxMultiCellCanvas :: Add(wxWindow *win, unsigned int row, unsigned int col)
 {
        wxASSERT_MSG(row >= 0 && row < m_maxRows, wxString("Row ") + itoa(row) + " out of bounds (" + itoa(m_maxRows) + ")");
        wxASSERT_MSG(col >= 0 && col < m_maxCols, wxString("Column ") + itoa(col) + " out of bounds (" + itoa(m_maxCols) + ")");
-       wxASSERT_MSG(m_cells[CELL_LOC(row, col)] == NULL, _("Cell already occupied"));
+       wxASSERT_MSG(m_cells[CELL_LOC(row, col)] == NULL, wxT("Cell already occupied"));
 
        wxCell *newCell = new wxCell(win);
        m_cells[CELL_LOC(row,col)] = newCell;