]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/imaglist.cpp
Added wxYieldIfNeeded
[wxWidgets.git] / src / mac / imaglist.cpp
index cb4b9ff01c4da817ba0904b0416fcaf1b6a7782e..4b8ffc372e0e8c9478da3ee14fbac892ee3862d1 100644 (file)
@@ -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
 ////////////////////////////////////////////////////////////////////////////