More asserts (well, checks) without _T()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3139 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ove Kaaven
1999-07-26 10:06:23 +00:00
parent c39eda949d
commit 24bd64eec1

View File

@@ -1142,7 +1142,7 @@ void wxListMainWindow::DeleteLine( wxListLineData *line )
void wxListMainWindow::Edit( long item )
{
wxNode *node = m_lines.Nth( item );
wxCHECK_RET( node, "wrong index in wxListCtrl::Edit() ");
wxCHECK_RET( node, _T("wrong index in wxListCtrl::Edit()") );
m_currentEdit = (wxListLineData*) node->Data();
@@ -1174,7 +1174,7 @@ void wxListMainWindow::Edit( long item )
void wxListMainWindow::OnRenameTimer()
{
wxCHECK_RET( m_current, "invalid m_current" );
wxCHECK_RET( m_current, _T("invalid m_current") );
Edit( m_lines.IndexOf( m_current ) );
}