From e777bd9ebdf6038b1a219925d8694cda83e291ad Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 3 Jan 2017 02:54:36 +0100 Subject: [PATCH] Slightly improve comment wording in MSW wxBitmap creation code No real changes. --- src/msw/bitmap.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/msw/bitmap.cpp b/src/msw/bitmap.cpp index 061f6748ef..3e4d8092b8 100644 --- a/src/msw/bitmap.cpp +++ b/src/msw/bitmap.cpp @@ -792,7 +792,7 @@ bool wxBitmap::DoCreate(int w, int h, int d, WXHDC hdc) GetBitmapData()->m_depth = d; } - else // d == 0, create bitmap compatible with the screen + else // No valid depth, create bitmap compatible with the screen { ScreenHDC dc; hbmp = ::CreateCompatibleBitmap(dc, w, h);