fixed variable name to follow style conventions

This commit is contained in:
Philipp Crocoll 2013-09-17 04:53:14 +02:00
parent 71c422d491
commit 15fde6ff92
1 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,7 @@ namespace keepass2android
private const String KeyServercredmode = "serverCredRememberMode";
private const String ViewIntent = "android.intent.action.VIEW";
private const string _showpasswordKey = "ShowPassword";
private const string ShowpasswordKey = "ShowPassword";
private Task<MemoryStream> _loadDbTask;
private IOConnectionInfo _ioConnection;
@ -199,7 +199,7 @@ namespace keepass2android
{
base.OnCreate(savedInstanceState);
if (savedInstanceState != null)
_showPassword = savedInstanceState.GetBoolean(_showpasswordKey, false);
_showPassword = savedInstanceState.GetBoolean(ShowpasswordKey, false);
Intent i = Intent;
String action = i.Action;
@ -438,7 +438,7 @@ namespace keepass2android
{
base.OnSaveInstanceState(outState);
AppTask.ToBundle(outState);
outState.PutBoolean(_showpasswordKey, _showPassword);
outState.PutBoolean(ShowpasswordKey, _showPassword);
}
protected override void OnResume()