diff options
author | Noel Grandin <noel@peralex.com> | 2012-09-26 14:19:01 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-10-04 21:29:35 +0200 |
commit | 4338d2f80ac68c6b55a9006254151f370bb8c6ab (patch) | |
tree | f57896cf7ad7931c841a4056f9c6dc6f9371a70d /svl/inc | |
parent | c29633988bc1877c5f6e2a89be4840c70afde418 (diff) |
sal_Bool->bool in svl::DdeTransaction
Change-Id: I97dd4411b5293b8f61527505e54608442eb18cca
Diffstat (limited to 'svl/inc')
-rw-r--r-- | svl/inc/svl/svdde.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svl/inc/svl/svdde.hxx b/svl/inc/svl/svdde.hxx index 0d8bc212c04e..785c1f4183da 100644 --- a/svl/inc/svl/svdde.hxx +++ b/svl/inc/svl/svdde.hxx @@ -100,14 +100,14 @@ protected: long nTime; Link aData; Link aDone; - sal_Bool bBusy; + bool bBusy; DdeTransaction( DdeConnection&, SAL_UNUSED_PARAMETER const String&, SAL_UNUSED_PARAMETER long = 0 ); public: virtual ~DdeTransaction(); - sal_Bool IsBusy() { return bBusy; } + bool IsBusy() { return bBusy; } const rtl::OUString GetName() const; void Execute(); |