diff options
Diffstat (limited to 'wx+/image_resources.cpp')
-rw-r--r-- | wx+/image_resources.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/wx+/image_resources.cpp b/wx+/image_resources.cpp index 3e162651..14d41a8e 100644 --- a/wx+/image_resources.cpp +++ b/wx+/image_resources.cpp @@ -5,7 +5,6 @@ // ***************************************************************************** #include "image_resources.h" -//#include <map> #include <zen/utf.h> #include <zen/thread.h> #include <zen/file_io.h> @@ -74,7 +73,7 @@ auto createScalerTask(const std::string& imageName, const wxImage& img, int hqSc assert(runningOnMainThread()); return [imageName, width = img.GetWidth(), // - height = img.GetHeight(), //don't call wxWidgets functions from worker thread + height = img.GetHeight(), //don't call these wxWidgets functions from worker thread rgb = img.GetData(), // alpha = img.GetAlpha(), // hqScale, &protResult] |