diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-22 16:38:52 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-10-23 07:08:51 +0000 |
commit | e4acd26406056addac8c10e80d8cfaa48cedc7fc (patch) | |
tree | 96532a7c95d861d0bf6add09d0c8afd179756bbe /include/oox/crypto | |
parent | fa22a60e71da5c43b53c5c94f65903ce05d8c9e8 (diff) |
com::sun::star->css in include/linguistic to include/sfx2
Change-Id: Id69e293fda98ee6cf2cc3d3296a0cd2e06bd847e
Reviewed-on: https://gerrit.libreoffice.org/19527
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/oox/crypto')
-rw-r--r-- | include/oox/crypto/DocumentDecryption.hxx | 12 | ||||
-rw-r--r-- | include/oox/crypto/DocumentEncryption.hxx | 4 |
2 files changed, 8 insertions, 8 deletions
diff --git a/include/oox/crypto/DocumentDecryption.hxx b/include/oox/crypto/DocumentDecryption.hxx index ca80a95de488..b494ea2900fa 100644 --- a/include/oox/crypto/DocumentDecryption.hxx +++ b/include/oox/crypto/DocumentDecryption.hxx @@ -34,7 +34,7 @@ namespace core { class OOX_DLLPUBLIC DocumentDecryption { private: - com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext > mxContext; + css::uno::Reference< css::uno::XComponentContext > mxContext; enum CryptoType { @@ -44,22 +44,22 @@ private: }; oox::ole::OleStorage& mrOleStorage; - std::unique_ptr<CryptoEngine> mEngine; + std::unique_ptr<CryptoEngine> mEngine; CryptoType mCryptoType; - bool readAgileEncryptionInfo( com::sun::star::uno::Reference< com::sun::star::io::XInputStream >& rStream ); + bool readAgileEncryptionInfo( css::uno::Reference< css::io::XInputStream >& rStream ); bool readStandard2007EncryptionInfo( BinaryInputStream& rStream ); public: DocumentDecryption( oox::ole::OleStorage& rOleStorage, - com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext > xContext); + css::uno::Reference< css::uno::XComponentContext > xContext); - bool decrypt(com::sun::star::uno::Reference< com::sun::star::io::XStream > xDocumentStream); + bool decrypt(css::uno::Reference< css::io::XStream > xDocumentStream); bool readEncryptionInfo(); bool generateEncryptionKey(const OUString& rPassword); - com::sun::star::uno::Sequence< com::sun::star::beans::NamedValue > createEncryptionData(const OUString& rPassword); + css::uno::Sequence< css::beans::NamedValue > createEncryptionData(const OUString& rPassword); }; diff --git a/include/oox/crypto/DocumentEncryption.hxx b/include/oox/crypto/DocumentEncryption.hxx index 55e3d12f4c43..d0ceee4b2738 100644 --- a/include/oox/crypto/DocumentEncryption.hxx +++ b/include/oox/crypto/DocumentEncryption.hxx @@ -31,7 +31,7 @@ namespace core { class OOX_DLLPUBLIC DocumentEncryption { private: - com::sun::star::uno::Reference< com::sun::star::io::XStream > mxDocumentStream; + css::uno::Reference< css::io::XStream > mxDocumentStream; oox::ole::OleStorage& mrOleStorage; OUString maPassword; @@ -39,7 +39,7 @@ private: public: DocumentEncryption( - com::sun::star::uno::Reference< com::sun::star::io::XStream > xDocumentStream, + css::uno::Reference< css::io::XStream > xDocumentStream, oox::ole::OleStorage& rOleStorage, const OUString& aPassword); |