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:
parent
19aee81c1d
commit
ed89fc5f3b
1 changed files with 1 additions and 1 deletions
|
|
@ -48,7 +48,7 @@ enum
|
||||||
#define wxIMAGELIST_DRAW_FOCUSED 0x0008
|
#define wxIMAGELIST_DRAW_FOCUSED 0x0008
|
||||||
|
|
||||||
// Define the interface of platform-specific wxImageList class.
|
// Define the interface of platform-specific wxImageList class.
|
||||||
class wxImageListBase : public wxObject
|
class WXDLLIMPEXP_CORE wxImageListBase : public wxObject
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue