diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-17 13:40:46 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-22 09:53:14 +0200 |
commit | 5df6dcf747a36989a3891c855737fe9bdb206a36 (patch) | |
tree | cb6ab57cf4f275860df7be2ec16a2fbd45f2692d /package/inc/ZipPackageFolder.hxx | |
parent | e4107bb8b7230c039e7fc76951bfb3634fe4b9e0 (diff) |
package: sal_Bool->bool
Change-Id: I05dd5070d0618ef7539b26c7edcaf01b0a84732c
Diffstat (limited to 'package/inc/ZipPackageFolder.hxx')
-rw-r--r-- | package/inc/ZipPackageFolder.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package/inc/ZipPackageFolder.hxx b/package/inc/ZipPackageFolder.hxx index 51dff1feaf50..b885e3bf6339 100644 --- a/package/inc/ZipPackageFolder.hxx +++ b/package/inc/ZipPackageFolder.hxx @@ -57,17 +57,17 @@ private: public: ZipPackageFolder( sal_Int32 nFormat, - sal_Bool bAllowRemoveOnInsert ); + bool bAllowRemoveOnInsert ); virtual ~ZipPackageFolder(); OUString& GetVersion() { return m_sVersion; } void SetVersion( const OUString& aVersion ) { m_sVersion = aVersion; } - sal_Bool LookForUnexpectedODF12Streams( const OUString& aPath ); + bool LookForUnexpectedODF12Streams( const OUString& aPath ); void setChildStreamsTypeByExtension( const ::com::sun::star::beans::StringPair& aPair ); - void doInsertByName ( ZipPackageEntry *pEntry, sal_Bool bSetParent ) + void doInsertByName ( ZipPackageEntry *pEntry, bool bSetParent ) throw(::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::ElementExistException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException); com::sun::star::packages::ContentInfo & doGetByName( const OUString& aName ) @@ -77,7 +77,7 @@ public: static ::com::sun::star::uno::Sequence < sal_Int8 > static_getImplementationId(); void setPackageFormat_Impl( sal_Int32 nFormat ) { m_nFormat = nFormat; } - void setRemoveOnInsertMode_Impl( sal_Bool bRemove ) { this->mbAllowRemoveOnInsert = bRemove; } + void setRemoveOnInsertMode_Impl( bool bRemove ) { this->mbAllowRemoveOnInsert = bRemove; } bool saveChild(const OUString &rShortName, const com::sun::star::packages::ContentInfo &rInfo, OUString &rPath, std::vector < com::sun::star::uno::Sequence < com::sun::star::beans::PropertyValue > > &rManList, ZipOutputStream & rZipOut, const com::sun::star::uno::Sequence < sal_Int8 >& rEncryptionKey, rtlRandomPool & rRandomPool); |