From 51cf0e34cf4d124b668352c6165cf495c9a09e90 Mon Sep 17 00:00:00 2001 From: Dmitry Timoshkov Date: Mon, 8 Apr 2002 23:46:32 +0000 Subject: [PATCH] Added CS_PARENTDC style. --- controls/edit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controls/edit.c b/controls/edit.c index d100a3fcdf2..758f2f81cce 100644 --- a/controls/edit.c +++ b/controls/edit.c @@ -290,7 +290,7 @@ LRESULT WINAPI EditWndProcW(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam); const struct builtin_class_descr EDIT_builtin_class = { "Edit", /* name */ - CS_GLOBALCLASS | CS_DBLCLKS /*| CS_PARENTDC*/, /* style */ + CS_GLOBALCLASS | CS_DBLCLKS | CS_PARENTDC, /* style */ EditWndProcA, /* procA */ EditWndProcW, /* procW */ sizeof(EDITSTATE *), /* extra */