summaryrefslogtreecommitdiff
path: root/include/oox/helper/zipstorage.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/oox/helper/zipstorage.hxx')
-rw-r--r--include/oox/helper/zipstorage.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/oox/helper/zipstorage.hxx b/include/oox/helper/zipstorage.hxx
index baf8d1241752..9b5328f74560 100644
--- a/include/oox/helper/zipstorage.hxx
+++ b/include/oox/helper/zipstorage.hxx
@@ -35,26 +35,26 @@ class ZipStorage : public StorageBase
{
public:
explicit ZipStorage(
- const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& rxContext,
- const ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream >& rxInStream );
+ const css::uno::Reference< css::uno::XComponentContext >& rxContext,
+ const css::uno::Reference< css::io::XInputStream >& rxInStream );
explicit ZipStorage(
- const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& rxContext,
- const ::com::sun::star::uno::Reference< ::com::sun::star::io::XStream >& rxStream );
+ const css::uno::Reference< css::uno::XComponentContext >& rxContext,
+ const css::uno::Reference< css::io::XStream >& rxStream );
virtual ~ZipStorage();
private:
explicit ZipStorage(
const ZipStorage& rParentStorage,
- const ::com::sun::star::uno::Reference< ::com::sun::star::embed::XStorage >& rxStorage,
+ const css::uno::Reference< css::embed::XStorage >& rxStorage,
const OUString& rElementName );
/** Returns true, if the object represents a valid storage. */
virtual bool implIsStorage() const override;
/** Returns the com.sun.star.embed.XStorage interface of the current storage. */
- virtual ::com::sun::star::uno::Reference< ::com::sun::star::embed::XStorage >
+ virtual css::uno::Reference< css::embed::XStorage >
implGetXStorage() const override;
/** Returns the names of all elements of this storage. */
@@ -64,18 +64,18 @@ private:
virtual StorageRef implOpenSubStorage( const OUString& rElementName, bool bCreateMissing ) override;
/** Opens and returns the specified input stream from the storage. */
- virtual ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream >
+ virtual css::uno::Reference< css::io::XInputStream >
implOpenInputStream( const OUString& rElementName ) override;
/** Opens and returns the specified output stream from the storage. */
- virtual ::com::sun::star::uno::Reference< ::com::sun::star::io::XOutputStream >
+ virtual css::uno::Reference< css::io::XOutputStream >
implOpenOutputStream( const OUString& rElementName ) override;
/** Commits the current storage. */
virtual void implCommit() const override;
private:
- ::com::sun::star::uno::Reference< ::com::sun::star::embed::XStorage >
+ css::uno::Reference< css::embed::XStorage >
mxStorage; ///< Storage based on input or output stream.
};