diff options
Diffstat (limited to 'package/inc')
-rw-r--r-- | package/inc/ZipFile.hxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/package/inc/ZipFile.hxx b/package/inc/ZipFile.hxx index bfc056f191ff..bac0168c3afc 100644 --- a/package/inc/ZipFile.hxx +++ b/package/inc/ZipFile.hxx @@ -33,6 +33,8 @@ #include <mutexholder.hxx> +#include <memory> + namespace com { namespace sun { namespace star { namespace uno { class XComponentContext; } namespace ucb { class XProgressHandler; } @@ -159,7 +161,7 @@ public: const OUString& aMediaType, const rtl::Reference<SotMutexHolder>& aMutexHolder ); - ZipEnumeration* entries(); + std::unique_ptr<ZipEnumeration> entries(); }; #endif |