From 1662abb707ea1f7e3e8d165a49faf32d4d2d2e39 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Sun, 11 Jun 2017 12:54:08 +0200 Subject: Windows: Remove unused "Parent" field in _TEXT_EDIT_DIALOG_PARAM structure --- src/Common/Dlgcode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Common') diff --git a/src/Common/Dlgcode.c b/src/Common/Dlgcode.c index f24299b8..fbeb5675 100644 --- a/src/Common/Dlgcode.c +++ b/src/Common/Dlgcode.c @@ -3364,7 +3364,7 @@ struct _TEXT_EDIT_DIALOG_PARAM { BOOL ReadOnly; std::string& Text; const WCHAR* Title; - HWND Parent; + _TEXT_EDIT_DIALOG_PARAM(BOOL _readOnly, const WCHAR* title, std::string& _text) : Title(title), Text(_text), ReadOnly(_readOnly) {} _TEXT_EDIT_DIALOG_PARAM& operator=( const _TEXT_EDIT_DIALOG_PARAM& other) { ReadOnly = other.ReadOnly; -- cgit v1.2.3