diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-09-13 23:49:08 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-09-13 23:51:06 +0200 |
commit | 24f3b5230cc1ea7e6fb084294f04df10ede17e2f (patch) | |
tree | b2efe5d7522a31c7c6cd21db2fcf9af38a4ca6c5 /src/Main/Forms/Forms.h | |
parent | 7e73208e62b441f836f27433a4e297a0e07233b8 (diff) | |
download | VeraCrypt-24f3b5230cc1ea7e6fb084294f04df10ede17e2f.tar.gz VeraCrypt-24f3b5230cc1ea7e6fb084294f04df10ede17e2f.zip |
Linux/MacOSX: Mask/unmask PIM value in GUI the same way as the password
Diffstat (limited to 'src/Main/Forms/Forms.h')
-rw-r--r-- | src/Main/Forms/Forms.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Main/Forms/Forms.h b/src/Main/Forms/Forms.h index e950ac2e..629519ae 100644 --- a/src/Main/Forms/Forms.h +++ b/src/Main/Forms/Forms.h @@ -1026,10 +1026,12 @@ namespace VeraCrypt wxStaticText* VolumePimStaticText;
wxTextCtrl* VolumePimTextCtrl;
wxStaticText* VolumePimHelpStaticText;
+ wxCheckBox* DisplayPimCheckBox;
wxStaticText* InfoStaticText;
// Virtual event handlers, overide them in your derived class
virtual void OnPimChanged( wxCommandEvent& event ) { event.Skip(); }
+ virtual void OnDisplayPimCheckBoxClick( wxCommandEvent& event ) { event.Skip(); }
public:
|