From d96f63000ad2df815e730bafe0b25fca9d76294a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Mon, 18 Feb 2002 23:31:23 +0000 Subject: [PATCH] fixed a typo (_ instead of wxT) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14300 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- contrib/src/gizmos/multicell.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/src/gizmos/multicell.cpp b/contrib/src/gizmos/multicell.cpp index c09a203a73..25497c80dd 100644 --- a/contrib/src/gizmos/multicell.cpp +++ b/contrib/src/gizmos/multicell.cpp @@ -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;