Skip to content

Commit 02e19c7

Browse files
author
Martin Noreke
committed
Fixing compiler warnings
1 parent 2b55713 commit 02e19c7

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

Rally.RestApi.UiForWpf/RestApiAuthMgrWpf.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ void loginControl_Closed(object sender, EventArgs e)
176176
/// <summary>
177177
/// Performs an authentication check against Rally with the specified credentials
178178
/// </summary>
179-
internal new RallyRestApi.AuthenticationResult PerformAuthenticationCheck(out string errorMessage)
179+
internal RallyRestApi.AuthenticationResult PerformAuthenticationCheck(out string errorMessage)
180180
{
181181
return base.PerformAuthenticationCheck(out errorMessage);
182182
}

Rally.RestApi.UiForWpf/SsoWindow.xaml.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ internal void ShowSsoPage(RestApiAuthMgrWpf authMgr, Uri ssoUrl)
6262
idpProxy = authMgr.Api.ConnectionInfo.Proxy;
6363
}
6464

65-
browser.Source = ssoUrl;
65+
this.ssoUrl = ssoUrl;
66+
SetUrl();
6667
Show();
6768
}
6869
catch

0 commit comments

Comments
 (0)