added range of types to delegate type info
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23256 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
4177a99c30
commit
8edb7cd500
@ -291,7 +291,11 @@ wxTypeInfo( kind , to , from , name)
|
||||
|
||||
wxDelegateTypeInfo::wxDelegateTypeInfo( int eventType , wxClassInfo* eventClass , converterToString_t to , converterFromString_t from ) :
|
||||
wxTypeInfo ( wxT_DELEGATE , to , from , wxEmptyString )
|
||||
{ m_eventClass = eventClass ; m_eventType = eventType ;}
|
||||
{ m_eventClass = eventClass ; m_eventType = eventType ; m_lastEventType = -1 ;}
|
||||
|
||||
wxDelegateTypeInfo::wxDelegateTypeInfo( int eventType , int lastEventType , wxClassInfo* eventClass , converterToString_t to , converterFromString_t from ) :
|
||||
wxTypeInfo ( wxT_DELEGATE , to , from , wxEmptyString )
|
||||
{ m_eventClass = eventClass ; m_eventType = eventType ; m_lastEventType = lastEventType; }
|
||||
|
||||
void wxTypeInfo::Register()
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user