*** empty log message ***

svn path=/trunk/boinc/; revision=4708
This commit is contained in:
Rom Walton 2004-12-02 21:55:04 +00:00
parent 54f144092a
commit 088d462e36
2 changed files with 4 additions and 1 deletions

View File

@ -20515,6 +20515,9 @@ Rom 2 Dec 2004
message was logged.
- Cleanup some of the statusbar update code, wxWidgets already had a function
to do that work.
- Bug Fix: Fix the socks proxy enable button, it was referencing the HTTP proxy
control instead of the socks proxy control. ( I thought I had fixed this
awhile ago )
client/win/
win_screensaver.cpp

View File

@ -650,8 +650,8 @@ void CMainFrame::OnToolsOptions( wxCommandEvent& WXUNUSED(event) )
pDoc->SetProxyHTTPUserName( strBuffer );
strBuffer = pDlg->m_HTTPPasswordCtrl->GetValue();
pDoc->SetProxyHTTPPassword( strBuffer );
bBuffer = pDlg->m_EnableHTTPProxyCtrl->GetValue();
bBuffer = pDlg->m_EnableSOCKSProxyCtrl->GetValue();
pDoc->SetProxySOCKSProxyEnabled( bBuffer );
strBuffer = pDlg->m_SOCKSAddressCtrl->GetValue();
pDoc->SetProxySOCKSServerName( strBuffer );