From 7a769391772b1184d801a123fb226017e8d65848 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 21 Aug 2019 20:06:19 +0200 Subject: loplugin:constmethod in package Change-Id: I44bc86a179164e1d039dd3a5f2c8a23396d870b3 Reviewed-on: https://gerrit.libreoffice.org/77931 Tested-by: Jenkins Reviewed-by: Noel Grandin --- package/inc/ZipOutputStream.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'package/inc/ZipOutputStream.hxx') diff --git a/package/inc/ZipOutputStream.hxx b/package/inc/ZipOutputStream.hxx index b527abde1443..aeb7ab1f86e8 100644 --- a/package/inc/ZipOutputStream.hxx +++ b/package/inc/ZipOutputStream.hxx @@ -63,7 +63,7 @@ public: /// @throws css::io::IOException /// @throws css::uno::RuntimeException void finish(); - const css::uno::Reference< css::io::XOutputStream >& getStream(); + const css::uno::Reference< css::io::XOutputStream >& getStream() const; static sal_uInt32 getCurrentDosTime(); static void setEntry( ZipEntry *pEntry ); @@ -87,7 +87,7 @@ public: void reduceScheduledThreadTasksToGivenNumberOrLess( sal_Int32 nThreadTasks); - const std::shared_ptr& getThreadTaskTag() { return mpThreadTaskTag; } + const std::shared_ptr& getThreadTaskTag() const { return mpThreadTaskTag; } }; #endif -- cgit