summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2022-12-01 15:41:29 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2022-12-01 21:28:53 +0100
commit224fc966096e9fc52d8e41fbae211e3999edd945 (patch)
tree6ce0a574a0fc53ad7c647690505495026c64f035 /unotools
parent8e33793d72a0561ebcf19ca22df814bb347813b7 (diff)
loplugin:unusedfields make some fields private
Change-Id: Ia30e3b7f10ae11c7a74e6860ac0a6115caaa439f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/143529 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'unotools')
-rw-r--r--unotools/source/ucbhelper/XTempFile.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/unotools/source/ucbhelper/XTempFile.hxx b/unotools/source/ucbhelper/XTempFile.hxx
index b439068d99ac..2b0ec33cb42a 100644
--- a/unotools/source/ucbhelper/XTempFile.hxx
+++ b/unotools/source/ucbhelper/XTempFile.hxx
@@ -48,7 +48,6 @@ typedef ::cppu::WeakImplHelper< css::io::XTempFile
class OTempFileService : public OTempFileBase
{
-protected:
std::optional<utl::TempFileNamed> mpTempFile;
std::mutex maMutex;
SvStream* mpStream;
@@ -56,6 +55,7 @@ protected:
bool mbInClosed;
bool mbOutClosed;
+protected:
void checkError () const;
void checkConnected ();