summaryrefslogtreecommitdiff
path: root/sd/source/filter
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2010-12-17 20:43:04 +0000
committerCaolán McNamara <caolanm@redhat.com>2010-12-17 20:43:04 +0000
commitb2ac2cabc88550b2211c2fa100f6c2d6979f3743 (patch)
tree63faf747d755d39091d71f3a1cb3ba9cb442c100 /sd/source/filter
parent63f23271a6af3c1fb34db3a7e8ad0414d0ed3e8a (diff)
WaE: C4805: Unsafe mix of bool and BOOL
Diffstat (limited to 'sd/source/filter')
-rw-r--r--sd/source/filter/ppt/pptin.cxx4
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;
}