Initialize member variables to avoid warnings

This commit is contained in:
catalinr
2019-10-14 07:53:21 +03:00
parent c150ece20f
commit 2fc569f0c2
9 changed files with 12 additions and 7 deletions

View File

@@ -244,7 +244,7 @@ private:
wxEventFunction m_method;
// Provide a dummy default ctor for type info purposes
wxObjectEventFunctor() { }
wxObjectEventFunctor() : m_handler(NULL), m_method(NULL) { }
WX_DECLARE_TYPEINFO_INLINE(wxObjectEventFunctor)
};