From 761df41e86ceeed56d32c038a6c9f88554d4f47a Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 3 Jan 2002 17:16:27 +0000 Subject: [PATCH] compilation fix for recent commit git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13335 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/popupcmn.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/common/popupcmn.cpp b/src/common/popupcmn.cpp index c78d74bcc4..ff6d0c0818 100644 --- a/src/common/popupcmn.cpp +++ b/src/common/popupcmn.cpp @@ -47,7 +47,10 @@ #endif // __WXMSW__ IMPLEMENT_DYNAMIC_CLASS(wxPopupTransientWindow, wxPopupWindow) -IMPLEMENT_DYNAMIC_CLASS(wxPopupComboWindow, wxPopupTransientWindow) + +#if wxUSE_COMBOBOX && defined(__WXUNIVERSAL__) + IMPLEMENT_DYNAMIC_CLASS(wxPopupComboWindow, wxPopupTransientWindow) +#endif // ---------------------------------------------------------------------------- // private classes -- 2.50.0