From 0a20646948fb259b0f005618f625501f4ce5a90e Mon Sep 17 00:00:00 2001
From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= <vslavik@fastmail.fm>
Date: Sat, 23 Aug 2003 21:01:58 +0000
Subject: [PATCH] Unicode fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23143 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---
 include/wx/xti.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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<typename T> T& Get()
     {
         wxxVariantDataT<T> *dataptr = dynamic_cast<wxxVariantDataT<T>*> (m_data) ;
-        wxASSERT_MSG( dataptr , "Cast not possible" ) ;
+        wxASSERT_MSG( dataptr , wxT("Cast not possible") ) ;
         return dataptr->Get() ;
     }
 
@@ -506,7 +506,7 @@ public :
     template<typename T> const T& Get() const
     {
         const wxxVariantDataT<T> *dataptr = dynamic_cast<const wxxVariantDataT<T>*> (m_data) ;
-        wxASSERT_MSG( dataptr , "Cast not possible" ) ;
+        wxASSERT_MSG( dataptr , wxT("Cast not possible") ) ;
         return dataptr->Get() ;
     }
 
-- 
2.47.2