*** empty log message ***

svn path=/trunk/boinc/; revision=6759
This commit is contained in:
Rom Walton 2005-07-22 22:57:38 +00:00
parent 595d3f9c96
commit 82bc343b08
3 changed files with 15 additions and 11 deletions

View File

@ -9452,3 +9452,15 @@ Rom 22 July 2005
BOINCBaseView.cpp, .h
BOINCTaskCtrl.cpp, .h
ViewProjects.cpp
Rom 22 July 2005
- Fix the statistics buttons so that they show up again after the
wxScrollWindow conversion.
- Fix for wireless USB adapters so that connection request events
happen even when InternetGetConnectedState returns a value
indicating that the machine is not connected.
client/
net_xfer.C
clientgui/
ViewStatistics.cpp

View File

@ -94,17 +94,9 @@ int NET_XFER::open_server() {
SCOPE_MSG_LOG scope_messages(log_messages, CLIENT_MSG_LOG::DEBUG_NET_XFER);
#ifdef _WIN32
if (get_connected_state() == CONNECTED_STATE_NOT_CONNECTED) {
gstate.want_network_flag = true;
return ERR_NO_NETWORK_CONNECTION;
} else {
gstate.want_network_flag = false;
}
#endif
retval = resolve_hostname(hostname, ipaddr, msg);
if (retval) {
gstate.want_network_flag = true;
msg_printf(0, MSG_ERROR, "%s\n", msg);
return retval;
}

View File

@ -309,6 +309,8 @@ CViewStatistics::CViewStatistics(wxNotebook* pNotebook) :
SetSizer(itemFlexGridSizer);
Layout();
pGroup = new CTaskItemGroup( _("Tasks") );
m_TaskGroups.push_back( pGroup );
@ -345,8 +347,6 @@ CViewStatistics::CViewStatistics(wxNotebook* pNotebook) :
// Create Task Pane Items
m_pTaskPane->UpdateControls();
Layout();
UpdateSelection();
}