*** empty log message ***

svn path=/trunk/boinc/; revision=11180
This commit is contained in:
Charlie Fenton 2006-09-22 03:19:11 +00:00
parent 6ad0059c31
commit 1e231050e9
2 changed files with 5 additions and 2 deletions

View File

@ -10369,6 +10369,7 @@ Walt 20 Sept 2006
ViewWork.cpp
Charlie 21 Sept 2006
- Mac: fix compiler warning.
- Mac: Set PROCINFO user_time to cpu time from ps command; use rsz
instead of rss for working_set_size; set page_fault_count to
pagein value from ps command. Unfortunately, none of these
@ -10379,6 +10380,8 @@ Charlie 21 Sept 2006
Mac_SA_Insecure.sh.
- Mac: improvements to Mac_SA_Secure.sh, Mac_SA_Insecure.sh scripts.
clientgui/
BOINCDialupManager.cpp
lib/
procinfo_mac.C
mac_installer/

View File

@ -88,7 +88,7 @@ size_t CBOINCDialUpManager::GetISPNames(wxArrayString& names) {
void CBOINCDialUpManager::poll() {
CMainDocument* pDoc = wxGetApp().GetDocument();
CBOINCBaseFrame* pFrame = wxGetApp().GetFrame();
#if defined(__WXMSW__) || defined(__WXMAC__)
#if defined(__WXMSW__)
CTaskBarIcon* pTaskbar = wxGetApp().GetTaskBarIcon();
#endif
wxTimeSpan tsLastDialupAlertSent;
@ -103,7 +103,7 @@ void CBOINCDialUpManager::poll() {
if (pDoc) {
wxASSERT(wxDynamicCast(pDoc, CMainDocument));
wxASSERT(wxDynamicCast(pFrame, CBOINCBaseFrame));
#if defined(__WXMSW__) || defined(__WXMAC__)
#if defined(__WXMSW__)
wxASSERT(wxDynamicCast(pTaskbar, CTaskBarIcon));
#endif