From f95d54fe647410025c3f7335f9cf4a3a10ea8a0b Mon Sep 17 00:00:00 2001 From: Mart Raudsepp Date: Tue, 25 Dec 2007 23:33:16 +0000 Subject: [PATCH] Fix compilation of unicode debug builds, broken since rev50864 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@50917 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/scrlwing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/generic/scrlwing.cpp b/src/generic/scrlwing.cpp index e08021f955..00289a0bed 100644 --- a/src/generic/scrlwing.cpp +++ b/src/generic/scrlwing.cpp @@ -1359,7 +1359,7 @@ void wxScrollHelper::HandleOnChildFocus(wxChildFocusEvent& event) while ( win->GetParent() != m_targetWindow ) { win = win->GetParent(); - wxCHECK_RET( win, "incorrectly sent wxChildFocusEvent - not our child" ); + wxCHECK_RET( win, wxT("incorrectly sent wxChildFocusEvent - not our child") ); } // if the child is not fully visible, try to scroll it into view: