From 15fde6ff923ee506c4505baceab10a68f6edf2bd Mon Sep 17 00:00:00 2001 From: Philipp Crocoll Date: Tue, 17 Sep 2013 04:53:14 +0200 Subject: [PATCH] fixed variable name to follow style conventions --- src/keepass2android/PasswordActivity.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/keepass2android/PasswordActivity.cs b/src/keepass2android/PasswordActivity.cs index ef9a3525..c74c69c8 100644 --- a/src/keepass2android/PasswordActivity.cs +++ b/src/keepass2android/PasswordActivity.cs @@ -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 _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()