]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/image.cpp
Account for the margins used by Windows around status bar text.
[wxWidgets.git] / src / common / image.cpp
index ce383eff93e906f89d5ee9f3b2327bb12edc5152..e13640c4d65378b14ccca15da3d0cff95545fe4c 100644 (file)
@@ -616,8 +616,11 @@ wxImage wxImage::ResampleBilinear(int width, int height) const
 
     double srcpixy, srcpixy1, srcpixy2, dy, dy1;
     double srcpixx, srcpixx1, srcpixx2, dx, dx1;
-    double r1, g1, b1, a1;
-    double r2, g2, b2, a2;
+
+    // initialize alpha values to avoid g++ warnings about possibly
+    // uninitialized variables
+    double r1, g1, b1, a1 = 0;
+    double r2, g2, b2, a2 = 0;
 
     for ( int dsty = 0; dsty < height; dsty++ )
     {