From b1f6de838e6d29596a8cec55a59dd3a5c3f02233 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Tue, 26 Aug 2003 00:59:04 +0000 Subject: [PATCH] unicode fixes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23231 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/xti.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/common/xti.cpp b/src/common/xti.cpp index 11e7edfcf9..34a04c3383 100644 --- a/src/common/xti.cpp +++ b/src/common/xti.cpp @@ -279,6 +279,12 @@ wxTypeInfo *wxTypeInfo::FindType(const wxChar *typeName) return (wxTypeInfo *)iter->second; } +#if wxUSE_UNICODE +wxClassTypeInfo::wxClassTypeInfo( wxTypeKind kind , wxClassInfo* classInfo , converterToString_t to , converterFromString_t from , const char *name) : +wxTypeInfo( kind , to , from , name) +{ wxASSERT_MSG( kind == wxT_OBJECT_PTR || kind == wxT_OBJECT , wxT("Illegal Kind for Enum Type")) ; m_classInfo = classInfo ;} +#endif + wxClassTypeInfo::wxClassTypeInfo( wxTypeKind kind , wxClassInfo* classInfo , converterToString_t to , converterFromString_t from , const wxString &name) : wxTypeInfo( kind , to , from , name) { wxASSERT_MSG( kind == wxT_OBJECT_PTR || kind == wxT_OBJECT , wxT("Illegal Kind for Enum Type")) ; m_classInfo = classInfo ;} -- 2.45.2