summaryrefslogtreecommitdiff
path: root/svl/source/svdde/ddecli.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-09-26 14:19:01 +0200
committerMichael Stahl <mstahl@redhat.com>2012-10-04 21:29:35 +0200
commit4338d2f80ac68c6b55a9006254151f370bb8c6ab (patch)
treef57896cf7ad7931c841a4056f9c6dc6f9371a70d /svl/source/svdde/ddecli.cxx
parentc29633988bc1877c5f6e2a89be4840c70afde418 (diff)
sal_Bool->bool in svl::DdeTransaction
Change-Id: I97dd4411b5293b8f61527505e54608442eb18cca
Diffstat (limited to 'svl/source/svdde/ddecli.cxx')
-rw-r--r--svl/source/svdde/ddecli.cxx6
1 files changed, 3 insertions, 3 deletions
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,