VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Common
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2017-06-11 12:54:08 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2017-06-11 17:28:21 +0200
commit1662abb707ea1f7e3e8d165a49faf32d4d2d2e39 (patch)
tree7c9982b37ece18b30b0e79c3dd6ca8298a3a03b8 /src/Common
parent5c9aff0c548eeec4e32e77b40569d9ca5a9f8c69 (diff)
downloadVeraCrypt-1662abb707ea1f7e3e8d165a49faf32d4d2d2e39.tar.gz
VeraCrypt-1662abb707ea1f7e3e8d165a49faf32d4d2d2e39.zip
Windows: Remove unused "Parent" field in _TEXT_EDIT_DIALOG_PARAM structure
Diffstat (limited to 'src/Common')
-rw-r--r--src/Common/Dlgcode.c2
1 files changed, 1 insertions, 1 deletions
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;