diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-09-14 00:47:34 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-09-14 00:48:37 +0200 |
commit | 85c1bc34e39a5e7682778c53ce68d6768346999c (patch) | |
tree | b75def0732f774cbacbbaf5e92aab862bd59cd41 /src/Main/Forms/VolumePimWizardPage.h | |
parent | 24f3b5230cc1ea7e6fb084294f04df10ede17e2f (diff) | |
download | VeraCrypt-85c1bc34e39a5e7682778c53ce68d6768346999c.tar.gz VeraCrypt-85c1bc34e39a5e7682778c53ce68d6768346999c.zip |
Linux/MacOSX: workaround bug in old versions of g++ that are confused by methods having the same name and one of them used as wxWidgets event handler callback.
Diffstat (limited to 'src/Main/Forms/VolumePimWizardPage.h')
-rw-r--r-- | src/Main/Forms/VolumePimWizardPage.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Main/Forms/VolumePimWizardPage.h b/src/Main/Forms/VolumePimWizardPage.h index af757359..d7586c92 100644 --- a/src/Main/Forms/VolumePimWizardPage.h +++ b/src/Main/Forms/VolumePimWizardPage.h @@ -37,7 +37,7 @@ namespace VeraCrypt protected: void SetPimValidator (); void OnPimChanged (wxCommandEvent& event); - void OnPimChanged (int pim); + void OnPimValueChanged (int pim); }; } |