From: Václav Slavík Date: Sat, 23 Aug 2003 21:01:58 +0000 (+0000) Subject: Unicode fix X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/0a20646948fb259b0f005618f625501f4ce5a90e Unicode fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23143 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/xti.h b/include/wx/xti.h index 0477ea5f64..afb6d7cb9b 100644 --- a/include/wx/xti.h +++ b/include/wx/xti.h @@ -498,7 +498,7 @@ public : template T& Get() { wxxVariantDataT *dataptr = dynamic_cast*> (m_data) ; - wxASSERT_MSG( dataptr , "Cast not possible" ) ; + wxASSERT_MSG( dataptr , wxT("Cast not possible") ) ; return dataptr->Get() ; } @@ -506,7 +506,7 @@ public : template const T& Get() const { const wxxVariantDataT *dataptr = dynamic_cast*> (m_data) ; - wxASSERT_MSG( dataptr , "Cast not possible" ) ; + wxASSERT_MSG( dataptr , wxT("Cast not possible") ) ; return dataptr->Get() ; }