summaryrefslogtreecommitdiffstats
path: root/samples/OAuthConsumerWpf/Authorize.xaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'samples/OAuthConsumerWpf/Authorize.xaml.cs')
-rw-r--r--samples/OAuthConsumerWpf/Authorize.xaml.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/OAuthConsumerWpf/Authorize.xaml.cs b/samples/OAuthConsumerWpf/Authorize.xaml.cs
index 2ee4d70..4ed1932 100644
--- a/samples/OAuthConsumerWpf/Authorize.xaml.cs
+++ b/samples/OAuthConsumerWpf/Authorize.xaml.cs
@@ -24,7 +24,7 @@
private string requestToken;
internal Authorize(DesktopConsumer consumer, FetchUri fetchUriCallback) {
- InitializeComponent();
+ this.InitializeComponent();
this.consumer = consumer;
Cursor original = this.Cursor;
@@ -44,7 +44,7 @@
internal string AccessToken { get; set; }
private void finishButton_Click(object sender, RoutedEventArgs e) {
- var grantedAccess = this.consumer.ProcessUserAuthorization(this.requestToken, verifierBox.Text);
+ var grantedAccess = this.consumer.ProcessUserAuthorization(this.requestToken, this.verifierBox.Text);
this.AccessToken = grantedAccess.AccessToken;
DialogResult = true;
Close();