]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/imaglist.cpp
wxMotif now works with wx-config and make install
[wxWidgets.git] / src / msw / imaglist.cpp
index 1ad87888ba49c85dd0ac717ba7f45d1dc4822208..4d969b52aba987b89fa8cbe906109c0ec37c80d4 100644 (file)
@@ -86,7 +86,14 @@ int wxImageList::Add(const wxBitmap& bitmap, const wxBitmap& mask)
        HBITMAP hBitmap2 = 0;
        if ( mask.Ok() )
            hBitmap2 = (HBITMAP) mask.GetHBITMAP();
-       return ImageList_Add((HIMAGELIST) GetHIMAGELIST(), hBitmap1, hBitmap2);
+
+    int index = ImageList_Add((HIMAGELIST) GetHIMAGELIST(), hBitmap1, hBitmap2);
+       if ( index == -1 )
+    {
+        wxLogError(_("Couldn't add an image to the image list."));
+    }
+
+    return index;
 }
 
 // Adds a bitmap, using the specified colour to create the mask bitmap