From b1fccca9b3c6c3e083ea00bacd33487cea146c96 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Fri, 6 Feb 2004 01:25:55 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=2971 --- checkin_notes | 3 +++ client/win/wingui_mainwindow.cpp | 6 ------ 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/checkin_notes b/checkin_notes index 4eaa65ace3..8c0e2df4a7 100755 --- a/checkin_notes +++ b/checkin_notes @@ -9854,6 +9854,9 @@ David Feb 5 2004 David Feb 5 2004 - skip over elements while parsing (they're there for the benefit of GUI RPC) + - removed old TRACEs from Win code client/ client_types.C + win/ + wingui_mainwindow.cpp diff --git a/client/win/wingui_mainwindow.cpp b/client/win/wingui_mainwindow.cpp index ab6e439f4e..31d02982df 100755 --- a/client/win/wingui_mainwindow.cpp +++ b/client/win/wingui_mainwindow.cpp @@ -47,8 +47,6 @@ CMainWindow* g_myWnd = NULL; // otherwise shows the currently running window BOOL CMyApp::InitInstance() { - TRACE(TEXT("starting\n")); - HANDLE h = CreateMutex(NULL, true, RUN_MUTEX); if ((h==0)|| GetLastError() == ERROR_ALREADY_EXISTS) { TRACE(TEXT("couldn't create mutex; h=%x, e=%d\n"), h, GetLastError()); @@ -68,7 +66,6 @@ BOOL CMyApp::InitInstance() UINT nStartSaver = RegisterWindowMessage(START_SS_MSG); ((CMainWindow*)m_pMainWnd)->SendMessage(nStartSaver, 0); } - TRACE(TEXT("returning from initInstance\n")); return TRUE; } @@ -1195,7 +1192,6 @@ void CMainWindow::PostNcDestroy() // function: handles any messages not handled by the window previously LRESULT CMainWindow::DefWindowProc(UINT message, WPARAM wParam, LPARAM lParam) { - TRACE(TEXT("message %d\n"), message); if(m_nShowMsg == message) { ShowWindow(SW_SHOW); SetForegroundWindow(); @@ -2161,9 +2157,7 @@ void CMainWindow::OnTimer(UINT uEventID) KillTimer(m_nGuiTimerID); // update state and gui - TRACE(TEXT("calling do_something\n")); while(gstate.do_something()); - TRACE(TEXT("return from do_something\n")); NetCheck(); // check if network connection can be terminated if (gstate.user_run_request == USER_RUN_REQUEST_NEVER) { // user suspended - don't bother checking idle