diff options
Diffstat (limited to 'io')
-rw-r--r-- | io/source/stm/odata.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
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 <cppuhelper/implbase.hxx> #include <cppuhelper/supportsservice.hxx> #include <osl/endian.h> +#include <tools/long.hxx> #include <com/sun/star/io/NotConnectedException.hpp> #include <com/sun/star/io/XObjectInputStream.hpp> @@ -1093,7 +1094,7 @@ Reference< XPersistObject > OObjectInputStream::readObject() { // grow to the right size Reference< XPersistObject > xEmpty; - m_aPersistVector.insert( m_aPersistVector.end(), static_cast<long>(nId - nSize + 1), xEmpty ); + m_aPersistVector.insert( m_aPersistVector.end(), static_cast<tools::Long>(nId - nSize + 1), xEmpty ); } m_aPersistVector[nId] = xLoadedObj; |