summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2010-07-10 22:39:30 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2010-07-10 22:39:30 -0700
commit6bb5b0db8767e9d7ee98317d2662b4ed5b43b8bf (patch)
tree747213737181d090d60edc3c5c2e7e00bcb761ba
parent5f9fa3be8b2615f3848b0dddaefe6fd5ad09930c (diff)
downloadDotNetOpenAuth-6bb5b0db8767e9d7ee98317d2662b4ed5b43b8bf.zip
DotNetOpenAuth-6bb5b0db8767e9d7ee98317d2662b4ed5b43b8bf.tar.gz
DotNetOpenAuth-6bb5b0db8767e9d7ee98317d2662b4ed5b43b8bf.tar.bz2
Fix build break.
-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 b7da074..d698ce0 100644
--- a/samples/OAuthConsumerWpf/MainWindow.xaml.cs
+++ b/samples/OAuthConsumerWpf/MainWindow.xaml.cs
@@ -212,7 +212,7 @@
try {
////var client = new DotNetOpenAuth.OAuth2.WebAppClient(authServer);
////client.PrepareRequestUserAuthorization();
- var client = new OAuth2.UserAgentClient(authServer, wrapClientIdentifierBox.Text, wrapClientSecretBox.Text);
+ var client = new OAuth2.UserAgentClient(authServer, wrapClientIdentifierBox.Text);
var authorizePopup = new Authorize2(client);
authorizePopup.Owner = this;