mirror of
https://github.com/moparisthebest/keepass2android
synced 2024-12-23 15:38:47 -05:00
fixed variable name to follow style conventions
This commit is contained in:
parent
71c422d491
commit
15fde6ff92
@ -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()
|
||||||
|
Loading…
Reference in New Issue
Block a user