From 86e2f9e635b82c49002b1e522e83facbeeaec373 Mon Sep 17 00:00:00 2001 From: Katayama Hirofumi MZ Date: Sat, 11 Mar 2023 07:42:04 +0900 Subject: [PATCH] [MSPAINT] There were two "main" windows (#5147) Our mspaint had two windows of window class "MainWindow". class CToolBox should inherit CWindowImpl instead of CWindowImpl. CORE-18867 --- base/applications/mspaint/toolbox.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/applications/mspaint/toolbox.h b/base/applications/mspaint/toolbox.h index 772ff2df1e2..f7cdfc91288 100644 --- a/base/applications/mspaint/toolbox.h +++ b/base/applications/mspaint/toolbox.h @@ -9,7 +9,7 @@ #pragma once -class CToolBox : public CWindowImpl +class CToolBox : public CWindowImpl { public: DECLARE_WND_CLASS_EX(_T("ToolBox"), CS_DBLCLKS, COLOR_BTNFACE)