mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=4708
This commit is contained in:
parent
54f144092a
commit
088d462e36
|
@ -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
|
||||
|
|
|
@ -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 );
|
||||
|
|
Loading…
Reference in New Issue