More _T() in asserts...

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3102 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ove Kaaven 1999-07-23 09:51:31 +00:00
parent ee6db21e41
commit 5701b057fb
2 changed files with 2 additions and 2 deletions

View File

@ -154,7 +154,7 @@ void wxCaret::DoMove()
if ( m_hasCaret )
{
wxWindow *winFocus = wxWindow::FindFocus();
wxASSERT_MSG( winFocus == GetWindow(), "how did we lose focus?" );
wxASSERT_MSG( winFocus == GetWindow(), _T("how did we lose focus?") );
CALL_CARET_API(SetCaretPos, (m_x, m_y));
}

View File

@ -272,5 +272,5 @@ bool wxBitmapCheckBox::Create(wxWindow *parent, wxWindowID id, const wxBitmap *l
void wxBitmapCheckBox::SetLabel(const wxBitmap& bitmap)
{
wxFAIL_MSG("not implemented");
wxFAIL_MSG(_T("not implemented"));
}