From 3ed9bba283a6a67864c0928186e277240be0d9ba Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Thu, 4 Feb 2021 10:18:28 +0100 Subject: Fix typo in code Change-Id: Ib8b306a27d25a34e784aeeb72708b0d5d1511f3c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110394 Tested-by: Jenkins Reviewed-by: Andrea Gelmini --- xmlhelp/source/cxxhelp/provider/inputstream.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xmlhelp') diff --git a/xmlhelp/source/cxxhelp/provider/inputstream.cxx b/xmlhelp/source/cxxhelp/provider/inputstream.cxx index 8eaebf364320..73d5f0e2f9ed 100644 --- a/xmlhelp/source/cxxhelp/provider/inputstream.cxx +++ b/xmlhelp/source/cxxhelp/provider/inputstream.cxx @@ -143,7 +143,7 @@ XInputStream_impl::seek( sal_Int64 location ) { if( location < 0 ) throw lang::IllegalArgumentException(); - if( osl::FileBase::E_None != m_aFile.setPos( osl_Pos_Absolut, sal_uInt64( location ) ) ) + if( osl::FileBase::E_None != m_aFile.setPos( osl_Pos_Absolute, sal_uInt64( location ) ) ) throw io::IOException(); } @@ -175,7 +175,7 @@ XInputStream_impl::getLength() if( err != osl::FileBase::E_None ) throw io::IOException(); - err = m_aFile.setPos( osl_Pos_Absolut, uCurrentPos ); + err = m_aFile.setPos( osl_Pos_Absolute, uCurrentPos ); if( err != osl::FileBase::E_None ) throw io::IOException(); -- cgit