From 451ed78dcdacfd94d04bda6dddd73dbb4bbc92e4 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 25 Sep 2020 01:09:47 +0200 Subject: [PATCH] Mark wxImageAlphaBlendMode as being new since 3.1.5 It doesn't matter much, but it, and the corresponding parameter, will be available in this version and not (only) in 3.2.0. --- interface/wx/image.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/wx/image.h b/interface/wx/image.h index a2c5b25f98..1c7288bd82 100644 --- a/interface/wx/image.h +++ b/interface/wx/image.h @@ -64,7 +64,7 @@ enum wxImageResizeQuality /** Constants for wxImage::Paste() for specifying alpha blending option. - @since 3.2.0 + @since 3.1.5 */ enum wxImageAlphaBlendMode { @@ -822,7 +822,7 @@ public: Takes care of the mask colour and out of bounds problems. @param alphaBlend - This parameter (new in wx 3.2.0) determines whether the alpha values + This parameter (new in wx 3.1.5) determines whether the alpha values of the original image replace (default) or are composed with the alpha channel of this image. Notice that alpha blending overrides the mask handling.