]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/rgncmn.cpp
Fix for listbox problem, when created on invisible
[wxWidgets.git] / src / common / rgncmn.cpp
index 2368fbc13376581da968c9e7a21156a6a19abe34..801aaa9e3f9286da27f65cfabaea6ae9776a25cc 100644 (file)
@@ -60,9 +60,9 @@ static bool DoRegionUnion(wxRegion& region,
 {
     unsigned char hiR, hiG, hiB;
 
-    hiR = wxMin(0xFF, loR + tolerance);
-    hiG = wxMin(0xFF, loG + tolerance);
-    hiB = wxMin(0xFF, loB + tolerance);
+    hiR = (unsigned char)wxMin(0xFF, loR + tolerance);
+    hiG = (unsigned char)wxMin(0xFF, loG + tolerance);
+    hiB = (unsigned char)wxMin(0xFF, loB + tolerance);
 
     // Loop through the image row by row, pixel by pixel, building up
     // rectangles to add to the region.