VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Main/Forms/VolumePimWizardPage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Main/Forms/VolumePimWizardPage.cpp')
-rw-r--r--src/Main/Forms/VolumePimWizardPage.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/Main/Forms/VolumePimWizardPage.cpp b/src/Main/Forms/VolumePimWizardPage.cpp
index d7176bb2..58d9d6af 100644
--- a/src/Main/Forms/VolumePimWizardPage.cpp
+++ b/src/Main/Forms/VolumePimWizardPage.cpp
@@ -32,14 +32,14 @@ namespace VeraCrypt
int VolumePimWizardPage::GetVolumePim () const
{
if (VolumePimTextCtrl->IsEnabled ())
{
- wxString pinStr (VolumePimTextCtrl->GetValue());
- long pin = 0;
- if (pinStr.IsEmpty())
+ wxString pimStr (VolumePimTextCtrl->GetValue());
+ long pim = 0;
+ if (pimStr.IsEmpty())
return 0;
- if (pinStr.ToLong (&pin))
- return (int) pin;
+ if (pimStr.ToLong (&pim))
+ return (int) pim;
else
return -1;
}
else
@@ -54,14 +54,14 @@ namespace VeraCrypt
void VolumePimWizardPage::OnPimChanged (wxCommandEvent& event)
{
if (GetVolumePim() != 0)
{
- VolumePinHelpStaticText->SetForegroundColour(*wxRED);
- VolumePinHelpStaticText->SetLabel(LangString["PIM_CHANGE_WARNING"]);
+ VolumePimHelpStaticText->SetForegroundColour(*wxRED);
+ VolumePimHelpStaticText->SetLabel(LangString["PIM_CHANGE_WARNING"]);
}
else
{
- VolumePinHelpStaticText->SetForegroundColour(*wxBLACK);
- VolumePinHelpStaticText->SetLabel(LangString["IDC_PIM_HELP"]);
+ VolumePimHelpStaticText->SetForegroundColour(*wxBLACK);
+ VolumePimHelpStaticText->SetLabel(LangString["IDC_PIM_HELP"]);
}
}
}