From 8e0d6a677891bb4e7131dd94d822bc60cb6984a6 Mon Sep 17 00:00:00 2001 From: Charlie Fenton Date: Thu, 31 Jul 2008 04:21:07 +0000 Subject: [PATCH] Fix inconsistent line endings svn path=/workspaces/charlief/; revision=15723 --- clientgui/AsyncRPC.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/clientgui/AsyncRPC.cpp b/clientgui/AsyncRPC.cpp index 1d846bc300..0a78c99b76 100644 --- a/clientgui/AsyncRPC.cpp +++ b/clientgui/AsyncRPC.cpp @@ -152,7 +152,7 @@ void *RPCThread::Entry() { wxPostEvent( wxTheApp, RPC_done_event ); } -#ifndef __WXMSW__ +#ifndef __WXMSW__ // Use a critical section to prevent a crash during // manager shutdown due to a rare race condition m_Doc->m_critsect.Enter(); @@ -438,7 +438,7 @@ int CMainDocument::RequestRPC(ASYNC_RPC_REQUEST& request, bool hasPriority) { request.isActive = false; current_rpc_request = request; current_rpc_request.isActive = true; -#ifndef __WXMSW__ +#ifndef __WXMSW__ m_RPCThread->Resume(); #endif } @@ -711,7 +711,7 @@ void CMainDocument::OnRPCComplete(CRPCFinishedEvent& event) { RPC_requests[0].isActive = false; current_rpc_request = RPC_requests[0]; current_rpc_request.isActive = true; -#ifndef __WXMSW__ +#ifndef __WXMSW__ m_RPCThread->Resume(); #endif }