X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ad81651f00edc6f489d9b6a0839d316a964fd521..9f96b16267a51aadbb9c388f5c3bc028fd9e9387:/src/mac/imaglist.cpp diff --git a/src/mac/imaglist.cpp b/src/mac/imaglist.cpp index cb4b9ff01c..4b8ffc372e 100644 --- a/src/mac/imaglist.cpp +++ b/src/mac/imaglist.cpp @@ -15,7 +15,9 @@ #include "wx/stubs/imaglist.h" +#if !USE_SHARED_LIBRARY IMPLEMENT_DYNAMIC_CLASS(wxImageList, wxObject) +#endif wxImageList::wxImageList() { @@ -27,17 +29,24 @@ wxImageList::~wxImageList() // TODO: destroy image list handle, if any } - // Attributes //////////////////////////////////////////////////////////////////////////// // Returns the number of images in the image list. int wxImageList::GetImageCount() const { - // TODO - return 0; + // TODO + return 0; } +#if 0 +bool wxImageList::GetSize(int index, int &width, int &hieght) const +{ + // TODO + return false; +} +#endif + // Operations ////////////////////////////////////////////////////////////////////////////