diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2018-04-29 17:33:33 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2018-04-29 17:52:43 +0200 |
commit | e39f5fa5d6b1b09df16271cabb1dda5d42c0b980 (patch) | |
tree | cb3aff4a8c04c6b39c014a37e0683fd5b7817d94 /src/Main/Forms/ChangePasswordDialog.h | |
parent | 7a842266b3f2e69d1706aec3039b661e3a5b25dd (diff) | |
download | VeraCrypt-e39f5fa5d6b1b09df16271cabb1dda5d42c0b980.tar.gz VeraCrypt-e39f5fa5d6b1b09df16271cabb1dda5d42c0b980.zip |
MacOSX: support pasting values to password fields using keyboard (CMD+V and CMD+A now working properly). This make using password managers with VeraCrypt easier.
Diffstat (limited to 'src/Main/Forms/ChangePasswordDialog.h')
-rw-r--r-- | src/Main/Forms/ChangePasswordDialog.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Main/Forms/ChangePasswordDialog.h b/src/Main/Forms/ChangePasswordDialog.h index 242bd965..66fbfecf 100644 --- a/src/Main/Forms/ChangePasswordDialog.h +++ b/src/Main/Forms/ChangePasswordDialog.h @@ -35,6 +35,10 @@ namespace VeraCrypt ChangePasswordDialog (wxWindow* parent, shared_ptr <VolumePath> volumePath, Mode::Enum mode = Mode::ChangePasswordAndKeyfiles, shared_ptr <VolumePassword> password = shared_ptr <VolumePassword> (), shared_ptr <KeyfileList> keyfiles = shared_ptr <KeyfileList> (), shared_ptr <VolumePassword> newPassword = shared_ptr <VolumePassword> (), shared_ptr <KeyfileList> newKeyfiles = shared_ptr <KeyfileList> ()); virtual ~ChangePasswordDialog (); + +#ifdef TC_MACOSX + virtual bool ProcessEvent(wxEvent& event); +#endif protected: void OnOKButtonClick (wxCommandEvent& event); |