From 4338d2f80ac68c6b55a9006254151f370bb8c6ab Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 26 Sep 2012 14:19:01 +0200 Subject: sal_Bool->bool in svl::DdeTransaction Change-Id: I97dd4411b5293b8f61527505e54608442eb18cca --- svl/source/svdde/ddecli.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'svl/source/svdde/ddecli.cxx') diff --git a/svl/source/svdde/ddecli.cxx b/svl/source/svdde/ddecli.cxx index 368ef13e7663..007fb3670624 100644 --- a/svl/source/svdde/ddecli.cxx +++ b/svl/source/svdde/ddecli.cxx @@ -85,7 +85,7 @@ HDDEDATA CALLBACK DdeInternal::CliCallback( if( (DWORD)(*iter)->nId == nInfo1 ) { nCode = (*iter)->nType & (XCLASS_MASK | XTYP_MASK); - (*iter)->bBusy = sal_False; + (*iter)->bBusy = false; (*iter)->Done( 0 != hData ); bFound = sal_True; } @@ -266,7 +266,7 @@ DdeTransaction::DdeTransaction( DdeConnection& d, const String& rItemName, nTime = n; nId = 0; nType = 0; - bBusy = sal_False; + bBusy = false; rDde.aTransactions.push_back( this ); } @@ -329,7 +329,7 @@ void DdeTransaction::Execute() if ( nId && rDde.pImp->hConv ) DdeAbandonTransaction( pInst->hDdeInstCli, rDde.pImp->hConv, nId); nId = 0; - bBusy = sal_True; + bBusy = true; HDDEDATA hRet = DdeClientTransaction( (unsigned char*)pData, nData, rDde.pImp->hConv, hItem, nExtFmt, (UINT)nType, TIMEOUT_ASYNC, -- cgit