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

View File

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