mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=12221
This commit is contained in:
parent
ef752adbfc
commit
1330dcd1b6
|
@ -2430,8 +2430,11 @@ David 13 Mar 2007
|
||||||
work_fetch.C
|
work_fetch.C
|
||||||
|
|
||||||
Charlie 13 Mar 2007
|
Charlie 13 Mar 2007
|
||||||
- Fix compiler warnings.
|
- Fix compiler warnings, including one in CProjectInfo::makeHashKey()
|
||||||
|
which warned "call will abort at runtime."
|
||||||
|
|
||||||
client/
|
client/
|
||||||
gui_rpc_server.C
|
gui_rpc_server.C
|
||||||
gui_rpc_server_ops.C
|
gui_rpc_server_ops.C
|
||||||
|
clientgui/
|
||||||
|
ViewProjectsGrid.cpp
|
||||||
|
|
|
@ -105,7 +105,9 @@ CProjectInfo::CProjectInfo() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void CProjectInfo::makeHashKey() {
|
void CProjectInfo::makeHashKey() {
|
||||||
hashKey.Printf("%s%s%s%f%f%f%f%s",name,accountname,teamname,totalcredit,avgcredit,resourceshare,rspercent,status);
|
hashKey.Printf(wxT("%s%s%s%f%f%f%f%s"),
|
||||||
|
name.c_str(), accountname.c_str(), teamname.c_str(), totalcredit,
|
||||||
|
avgcredit, resourceshare, rspercent, status.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
//###############
|
//###############
|
||||||
|
|
Loading…
Reference in New Issue