Windows: Remove unused "Parent" field in _TEXT_EDIT_DIALOG_PARAM structure

This commit is contained in:
Mounir IDRASSI 2017-06-11 12:54:08 +02:00
parent 5c9aff0c54
commit 1662abb707
No known key found for this signature in database
GPG Key ID: DD0C382D5FCFB8FC
1 changed files with 1 additions and 1 deletions

View File

@ -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;