VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Main/Forms/Forms.cpp
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2014-07-27 13:03:29 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2014-11-08 23:21:57 +0100
commit80a26745a6997dfcae79e2e852f6231767eb6dbf (patch)
treee2f3c758c1f780680aed005871e541d3c1c60025 /src/Main/Forms/Forms.cpp
parent88b4628c340cde3cedf6d13d818323386cacd160 (diff)
downloadVeraCrypt-80a26745a6997dfcae79e2e852f6231767eb6dbf.tar.gz
VeraCrypt-80a26745a6997dfcae79e2e852f6231767eb6dbf.zip
Linux GUI : hide the wipe choice during volume creation. Remove extra content from wipe choice list.
Diffstat (limited to 'src/Main/Forms/Forms.cpp')
-rw-r--r--src/Main/Forms/Forms.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Main/Forms/Forms.cpp b/src/Main/Forms/Forms.cpp
index 76080605..138ea60a 100644
--- a/src/Main/Forms/Forms.cpp
+++ b/src/Main/Forms/Forms.cpp
@@ -3154,7 +3154,7 @@ VolumePasswordPanelBase::VolumePasswordPanelBase( wxWindow* parent, wxWindowID i
HeaderWipeCountText->Wrap( -1 );
GridBagSizer->Add( HeaderWipeCountText, wxGBPosition( 8, 0 ), wxGBSpan( 1, 1 ), wxALIGN_CENTER_VERTICAL|wxALIGN_RIGHT|wxRIGHT, 5 );
- wxString HeaderWipeCountChoices[] = { _("3-pass"), _("7-pass"), _("35-pass"), _("256-pass"), _("3") };
+ wxString HeaderWipeCountChoices[] = { _("3-pass"), _("7-pass"), _("35-pass"), _("256-pass") };
int HeaderWipeCountNChoices = sizeof( HeaderWipeCountChoices ) / sizeof( wxString );
HeaderWipeCount = new wxChoice( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, HeaderWipeCountNChoices, HeaderWipeCountChoices, 0 );
HeaderWipeCount->SetSelection( 0 );