diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-12-17 20:43:04 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-12-17 20:43:04 +0000 |
commit | b2ac2cabc88550b2211c2fa100f6c2d6979f3743 (patch) | |
tree | 63faf747d755d39091d71f3a1cb3ba9cb442c100 /sd/source/filter | |
parent | 63f23271a6af3c1fb34db3a7e8ad0414d0ed3e8a (diff) |
WaE: C4805: Unsafe mix of bool and BOOL
Diffstat (limited to 'sd/source/filter')
-rw-r--r-- | sd/source/filter/ppt/pptin.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/filter/ppt/pptin.cxx b/sd/source/filter/ppt/pptin.cxx index 749b8cc4d..a99f9e476 100644 --- a/sd/source/filter/ppt/pptin.cxx +++ b/sd/source/filter/ppt/pptin.cxx @@ -255,7 +255,7 @@ sal_Bool ImplSdPPTImport::Import() if ( !bOk ) return FALSE; - pSdrModel->setLock( sal_True ); + pSdrModel->setLock(true); pSdrModel->EnableUndo(false); SdrOutliner& rOutl = mpDoc->GetDrawOutliner(); @@ -1407,7 +1407,7 @@ sal_Bool ImplSdPPTImport::Import() sfx2::LoadOlePropertySet(xDocProps, &mrStorage); xDocProps->setTemplateName(::rtl::OUString()); - pSdrModel->setLock( sal_False ); + pSdrModel->setLock(false); pSdrModel->EnableUndo(true); return bOk; } |