From 05f742d28b3786f44781af5b069c05c16b84decd Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Sun, 16 Feb 2014 22:51:15 +0100 Subject: comphelper: sal_Bool -> bool Change-Id: I6fc331ae0706f4bb193543011c8d4ae0a385fcc0 --- oox/source/helper/zipstorage.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'oox') diff --git a/oox/source/helper/zipstorage.cxx b/oox/source/helper/zipstorage.cxx index a93045b10f20..c4cbdc5e8a5a 100644 --- a/oox/source/helper/zipstorage.cxx +++ b/oox/source/helper/zipstorage.cxx @@ -62,7 +62,7 @@ ZipStorage::ZipStorage( const Reference< XComponentContext >& rxContext, const R */ mxStorage = ::comphelper::OStorageHelper::GetStorageOfFormatFromInputStream( ZIP_STORAGE_FORMAT_STRING, rxInStream, rxContext, - sal_False ); // DEV300_m80: Was sal_True, but DOCX and others did not load + false ); // DEV300_m80: Was sal_True, but DOCX and others did not load } catch (Exception const& e) { @@ -80,7 +80,7 @@ ZipStorage::ZipStorage( const Reference< XComponentContext >& rxContext, const R { const sal_Int32 nOpenMode = ElementModes::READWRITE | ElementModes::TRUNCATE; mxStorage = ::comphelper::OStorageHelper::GetStorageOfFormatFromStream( - OFOPXML_STORAGE_FORMAT_STRING, rxStream, nOpenMode, rxContext, sal_True ); + OFOPXML_STORAGE_FORMAT_STRING, rxStream, nOpenMode, rxContext, true ); } catch (Exception const& e) { -- cgit