]> git.saurik.com Git - wxWidgets.git/commitdiff
added wxRTTI macros to wxPopupComboWindow and wxPopupTransientWindow
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 3 Jan 2002 16:01:02 +0000 (16:01 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 3 Jan 2002 16:01:02 +0000 (16:01 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13334 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/popupwin.h
src/common/popupcmn.cpp

index accdde8d5d9610b81fe83a78497d7df3574d4849..896e6f18f59f25c0cf2e2b27921542b30af29dd2 100644 (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__)
index 55dcc2daa9f0215d021722c014391d963fa3030a..c78d74bcc4739a33ca9ce7721cb50d27b28fff7b 100644 (file)
@@ -46,6 +46,9 @@
     IMPLEMENT_DYNAMIC_CLASS(wxPopupWindow, wxWindow)
 #endif // __WXMSW__
 
+IMPLEMENT_DYNAMIC_CLASS(wxPopupTransientWindow, wxPopupWindow)
+IMPLEMENT_DYNAMIC_CLASS(wxPopupComboWindow, wxPopupTransientWindow)
+
 // ----------------------------------------------------------------------------
 // private classes
 // ----------------------------------------------------------------------------