summaryrefslogtreecommitdiffstats
path: root/samples/OAuthConsumerWpf/MainWindow.xaml.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2013-03-26 12:52:06 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2013-03-26 12:52:06 -0700
commitb9ae2ab289e2b9708ea3cce055ac484b00246a8a (patch)
tree28ef380a84c743075cbddf3417556e1d1bb37f49 /samples/OAuthConsumerWpf/MainWindow.xaml.cs
parent3d37ff45cab6838d80b22e6b782a0b9b4c2f4aeb (diff)
downloadDotNetOpenAuth-b9ae2ab289e2b9708ea3cce055ac484b00246a8a.zip
DotNetOpenAuth-b9ae2ab289e2b9708ea3cce055ac484b00246a8a.tar.gz
DotNetOpenAuth-b9ae2ab289e2b9708ea3cce055ac484b00246a8a.tar.bz2
Lots of StyleCop fixes.
Diffstat (limited to 'samples/OAuthConsumerWpf/MainWindow.xaml.cs')
-rw-r--r--samples/OAuthConsumerWpf/MainWindow.xaml.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/OAuthConsumerWpf/MainWindow.xaml.cs b/samples/OAuthConsumerWpf/MainWindow.xaml.cs
index d58df8c..c813576 100644
--- a/samples/OAuthConsumerWpf/MainWindow.xaml.cs
+++ b/samples/OAuthConsumerWpf/MainWindow.xaml.cs
@@ -176,7 +176,7 @@
authorizePopup.Authorization.Scope.AddRange(OAuthUtilities.SplitScopes(this.oauth2ScopeBox.Text));
authorizePopup.Authorization.Callback = new Uri("http://www.microsoft.com/en-us/default.aspx");
authorizePopup.Owner = this;
- authorizePopup.ClientAuthorizationView.RequestImplicitGrant = flowBox.SelectedIndex == 1;
+ authorizePopup.ClientAuthorizationView.RequestImplicitGrant = this.flowBox.SelectedIndex == 1;
bool? result = authorizePopup.ShowDialog();
if (result.HasValue && result.Value) {
var request = new HttpRequestMessage(