Make wxImageListBase DLL-exported to fix MSVS warnings

Without a DLL export declaration on this class MSVS complains about
using it as a base class for DLL-exported wxImageList, so do provide
this declaration, even if it's not normally necessary because there are
no member functions of this class in the shared library, just to avoid
the warning.

Closes #24232.
This commit is contained in:
Vadim Zeitlin 2024-01-21 01:42:54 +01:00
parent 19aee81c1d
commit ed89fc5f3b

View file

@ -48,7 +48,7 @@ enum
#define wxIMAGELIST_DRAW_FOCUSED 0x0008
// Define the interface of platform-specific wxImageList class.
class wxImageListBase : public wxObject
class WXDLLIMPEXP_CORE wxImageListBase : public wxObject
{
public:
/*