summaryrefslogtreecommitdiff
path: root/wx+/image_holder.h
diff options
context:
space:
mode:
Diffstat (limited to 'wx+/image_holder.h')
-rwxr-xr-xwx+/image_holder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/wx+/image_holder.h b/wx+/image_holder.h
index f4bf3c8a..aada581f 100755
--- a/wx+/image_holder.h
+++ b/wx+/image_holder.h
@@ -20,7 +20,7 @@ struct ImageHolder //prepare conversion to wxImage as much as possible while sta
ImageHolder(int w, int h, bool withAlpha) : //init with memory allocated
width_(w), height_(h),
- rgb_(static_cast<unsigned char*>(::malloc(w * h * 3))),
+ rgb_( static_cast<unsigned char*>(::malloc(w * h * 3))),
alpha_(withAlpha ? static_cast<unsigned char*>(::malloc(w * h)) : nullptr) {}
ImageHolder (ImageHolder&&) noexcept = default; //
bgstack15