mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=1568
This commit is contained in:
parent
aad1e18626
commit
cc2e240fda
|
@ -4959,6 +4959,7 @@ Tim June 23, 2003
|
|||
UpdateGUI only refreshes active tab (reduces Windows CPU time by 85%)
|
||||
Fixed m_MessageListCtrl scrolling issue
|
||||
Changed pie chart labels
|
||||
Temporarily fixed the afx assertion failure at line 157
|
||||
|
||||
client/
|
||||
gui_title.c
|
||||
|
|
|
@ -151,6 +151,12 @@ void CMainWindow::ClearProjectItems(char *proj_url) {
|
|||
int i;
|
||||
CString ItemURL;
|
||||
|
||||
// TODO: find out how proj_url can be null
|
||||
if (!proj_url) {
|
||||
fprintf(stderr, "CMainWindow::ClearProjectItems failed: proj_url is null");
|
||||
return;
|
||||
}
|
||||
|
||||
for(i = 0; i < m_ProjectListCtrl.GetItemCount();) {
|
||||
ItemURL = m_ProjectListCtrl.GetProjectURL(i);
|
||||
if(!ItemURL.Compare(proj_url)) {
|
||||
|
|
Loading…
Reference in New Issue