diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2021-02-04 10:18:28 +0100 |
---|---|---|
committer | Andrea Gelmini <andrea.gelmini@gelma.net> | 2021-02-04 22:56:54 +0100 |
commit | 3ed9bba283a6a67864c0928186e277240be0d9ba (patch) | |
tree | 47d2bb70e269839cce5aa6645e0ad596faa64529 /xmlhelp | |
parent | 955fd7d8dc9da29717371c8fcb25d9954ff975bd (diff) |
Fix typo in code
Change-Id: Ib8b306a27d25a34e784aeeb72708b0d5d1511f3c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110394
Tested-by: Jenkins
Reviewed-by: Andrea Gelmini <andrea.gelmini@gelma.net>
Diffstat (limited to 'xmlhelp')
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/inputstream.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
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(); |