From c98e80d98d15dc676f2331581b2f82b3e25a42d7 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 12 May 2006 19:31:50 +0000 Subject: [PATCH] correct dll declaration (the classes in the header are part of adv library, not core) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39144 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/odcombo.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/wx/odcombo.h b/include/wx/odcombo.h index 49abfd2046..a53e4d587d 100644 --- a/include/wx/odcombo.h +++ b/include/wx/odcombo.h @@ -59,7 +59,8 @@ enum // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxVListBoxComboPopup : public wxVListBox, public wxComboPopup +class WXDLLIMPEXP_ADV wxVListBoxComboPopup : public wxVListBox, + public wxComboPopup { friend class wxOwnerDrawnComboBox; public: @@ -177,7 +178,8 @@ private: // the wxComboControl. // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxOwnerDrawnComboBox : public wxComboControl, public wxItemContainer +class WXDLLIMPEXP_ADV wxOwnerDrawnComboBox : public wxComboControl, + public wxItemContainer { friend class wxComboPopupWindow; friend class wxComboControlBase;