]> git.saurik.com Git - wxWidgets.git/commitdiff
More asserts (well, checks) without _T()
authorOve Kaaven <ovek@arcticnet.no>
Mon, 26 Jul 1999 10:06:23 +0000 (10:06 +0000)
committerOve Kaaven <ovek@arcticnet.no>
Mon, 26 Jul 1999 10:06:23 +0000 (10:06 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3139 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/listctrl.cpp

index f9b74282d597175c0a421fb2dd8c5ea4463812c9..d88569acb1c1f5545b372c3f282565552f50a1ed 100644 (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 ) );
 }