mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=6759
This commit is contained in:
parent
595d3f9c96
commit
82bc343b08
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue