mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=9936
This commit is contained in:
parent
383f46f8ff
commit
ff0228638b
|
@ -3923,7 +3923,17 @@ Charlie 17 Apr 2006
|
||||||
|
|
||||||
Rom 17 Apr 2006
|
Rom 17 Apr 2006
|
||||||
- Clean up the caching scheme used in the manager
|
- Clean up the caching scheme used in the manager
|
||||||
|
- Remove the message cache update for all tabs except
|
||||||
|
the messages tab.
|
||||||
|
- Remove the project update from the work tab. Use a new flag being
|
||||||
|
introduced to show if the project has been suspended via GUI.
|
||||||
|
|
||||||
clientgui/
|
clientgui/
|
||||||
MainDocument.cpp
|
MainDocument.cpp
|
||||||
MainFrame.cpp
|
MainFrame.cpp
|
||||||
|
ViewMessages.cpp
|
||||||
|
ViewProjects.cpp
|
||||||
|
ViewResources.cpp
|
||||||
|
ViewStatistics.cpp
|
||||||
|
ViewTransfers.cpp
|
||||||
|
ViewWork.cpp
|
||||||
|
|
|
@ -631,7 +631,6 @@ int CMainDocument::GetProjectCount() {
|
||||||
int iCount = -1;
|
int iCount = -1;
|
||||||
|
|
||||||
CachedProjectStatusUpdate();
|
CachedProjectStatusUpdate();
|
||||||
CachedMessageUpdate();
|
|
||||||
CachedStateUpdate();
|
CachedStateUpdate();
|
||||||
|
|
||||||
if (!state.projects.empty())
|
if (!state.projects.empty())
|
||||||
|
@ -781,9 +780,7 @@ RESULT* CMainDocument::result(unsigned int i) {
|
||||||
int CMainDocument::GetWorkCount() {
|
int CMainDocument::GetWorkCount() {
|
||||||
int iCount = -1;
|
int iCount = -1;
|
||||||
|
|
||||||
CachedProjectStatusUpdate();
|
|
||||||
CachedResultsStatusUpdate();
|
CachedResultsStatusUpdate();
|
||||||
CachedMessageUpdate();
|
|
||||||
CachedStateUpdate();
|
CachedStateUpdate();
|
||||||
|
|
||||||
if (!results.results.empty())
|
if (!results.results.empty())
|
||||||
|
@ -989,7 +986,6 @@ int CMainDocument::GetTransferCount() {
|
||||||
int iCount = 0;
|
int iCount = 0;
|
||||||
|
|
||||||
CachedFileTransfersUpdate();
|
CachedFileTransfersUpdate();
|
||||||
CachedMessageUpdate();
|
|
||||||
CachedStateUpdate();
|
CachedStateUpdate();
|
||||||
|
|
||||||
if (!ft.file_transfers.empty())
|
if (!ft.file_transfers.empty())
|
||||||
|
@ -1073,7 +1069,6 @@ int CMainDocument::GetResourceCount() {
|
||||||
int iCount = -1;
|
int iCount = -1;
|
||||||
|
|
||||||
CachedResourceStatusUpdate();
|
CachedResourceStatusUpdate();
|
||||||
CachedMessageUpdate();
|
|
||||||
CachedStateUpdate();
|
CachedStateUpdate();
|
||||||
|
|
||||||
if (!resource_status.projects.empty())
|
if (!resource_status.projects.empty())
|
||||||
|
@ -1132,7 +1127,6 @@ int CMainDocument::GetStatisticsCount() {
|
||||||
int iCount = -1;
|
int iCount = -1;
|
||||||
|
|
||||||
CachedStatisticsStatusUpdate();
|
CachedStatisticsStatusUpdate();
|
||||||
CachedMessageUpdate();
|
|
||||||
CachedStateUpdate();
|
CachedStateUpdate();
|
||||||
|
|
||||||
if (!statistics_status.projects.empty())
|
if (!statistics_status.projects.empty())
|
||||||
|
|
Loading…
Reference in New Issue