diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-05-08 11:37:27 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-05-08 11:37:27 -0700 |
commit | 5a53ed2ef31ebf9a2555cdd5129fb12283c2f19a (patch) | |
tree | 232c211f71039efc4d9477be97852fc939bf7c8a /samples/OAuthConsumer/SignInWithTwitter.aspx.cs | |
parent | 35e6f1fa6daa3afb0d652d6e00a8f18ced4680a4 (diff) | |
download | DotNetOpenAuth-5a53ed2ef31ebf9a2555cdd5129fb12283c2f19a.zip DotNetOpenAuth-5a53ed2ef31ebf9a2555cdd5129fb12283c2f19a.tar.gz DotNetOpenAuth-5a53ed2ef31ebf9a2555cdd5129fb12283c2f19a.tar.bz2 |
More StyleCop fixes that mysteriously didn't show up before.
Diffstat (limited to 'samples/OAuthConsumer/SignInWithTwitter.aspx.cs')
-rw-r--r-- | samples/OAuthConsumer/SignInWithTwitter.aspx.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/OAuthConsumer/SignInWithTwitter.aspx.cs b/samples/OAuthConsumer/SignInWithTwitter.aspx.cs index 26ccead..5bc46ef 100644 --- a/samples/OAuthConsumer/SignInWithTwitter.aspx.cs +++ b/samples/OAuthConsumer/SignInWithTwitter.aspx.cs @@ -21,8 +21,8 @@ string screenName; int userId; if (TwitterConsumer.TryFinishSignInWithTwitter(out screenName, out userId)) { - loggedInPanel.Visible = true; - loggedInName.Text = screenName; + this.loggedInPanel.Visible = true; + this.loggedInName.Text = screenName; // In a real app, the Twitter username would likely be used // to log the user into the application. |