git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3139
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
void wxListMainWindow::Edit( long item )
{
wxNode *node = m_lines.Nth( item );
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();
m_currentEdit = (wxListLineData*) node->Data();
void wxListMainWindow::OnRenameTimer()
{
void wxListMainWindow::OnRenameTimer()
{
- wxCHECK_RET( m_current, "invalid m_current" );
+ wxCHECK_RET( m_current, _T("invalid m_current") );
Edit( m_lines.IndexOf( m_current ) );
}
Edit( m_lines.IndexOf( m_current ) );
}