From e25fd7782ad04dc363b4265e1bd08d6e092b50c5 Mon Sep 17 00:00:00 2001 From: Noel Date: Wed, 21 Oct 2020 15:30:37 +0200 Subject: long->tools::Long in hwpfilter..oox Change-Id: I9ab8876aac7b2f8b488db6dfa9c6fd0cecd2238b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104626 Tested-by: Jenkins Reviewed-by: Noel Grandin --- io/source/stm/odata.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'io') diff --git a/io/source/stm/odata.cxx b/io/source/stm/odata.cxx index ed543ab3c795..754cda450a94 100644 --- a/io/source/stm/odata.cxx +++ b/io/source/stm/odata.cxx @@ -25,6 +25,7 @@ #include #include #include +#include #include #include @@ -1093,7 +1094,7 @@ Reference< XPersistObject > OObjectInputStream::readObject() { // grow to the right size Reference< XPersistObject > xEmpty; - m_aPersistVector.insert( m_aPersistVector.end(), static_cast(nId - nSize + 1), xEmpty ); + m_aPersistVector.insert( m_aPersistVector.end(), static_cast(nId - nSize + 1), xEmpty ); } m_aPersistVector[nId] = xLoadedObj; -- cgit