From 24bd64eec17776d9f3ad4cabcd13697e56f568d1 Mon Sep 17 00:00:00 2001 From: Ove Kaaven Date: Mon, 26 Jul 1999 10:06:23 +0000 Subject: [PATCH] More asserts (well, checks) without _T() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3139 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/listctrl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/generic/listctrl.cpp b/src/generic/listctrl.cpp index f9b74282d5..d88569acb1 100644 --- a/src/generic/listctrl.cpp +++ b/src/generic/listctrl.cpp @@ -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 ) ); } -- 2.45.2