added wxRTTI macros to wxPopupComboWindow and wxPopupTransientWindow

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13334 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2002-01-03 16:01:02 +00:00
parent b0fc883297
commit 6c3422e909
2 changed files with 7 additions and 0 deletions

View File

@ -111,6 +111,8 @@ protected:
friend class wxPopupWindowHandler;
friend class wxPopupFocusHandler;
DECLARE_DYNAMIC_CLASS(wxPopupTransientWindow)
};
#if wxUSE_COMBOBOX && defined(__WXUNIVERSAL__)
@ -138,6 +140,8 @@ protected:
// the parent combobox
wxComboControl *m_combo;
DECLARE_DYNAMIC_CLASS(wxPopupComboWindow)
};
#endif // wxUSE_COMBOBOX && defined(__WXUNIVERSAL__)

View File

@ -46,6 +46,9 @@
IMPLEMENT_DYNAMIC_CLASS(wxPopupWindow, wxWindow)
#endif // __WXMSW__
IMPLEMENT_DYNAMIC_CLASS(wxPopupTransientWindow, wxPopupWindow)
IMPLEMENT_DYNAMIC_CLASS(wxPopupComboWindow, wxPopupTransientWindow)
// ----------------------------------------------------------------------------
// private classes
// ----------------------------------------------------------------------------