From eefba5de538a14d417f8e9261150e9aef2604c8d Mon Sep 17 00:00:00 2001 From: Jens-Heiner Rechtien Date: Mon, 19 Jun 2006 23:38:15 +0000 Subject: INTEGRATION: CWS warnings01 (1.1.182); FILE MERGED 2006/04/06 14:48:33 ab 1.1.182.1: #i55991# warning-free code --- xmlhelp/source/cxxhelp/provider/bufferedinputstream.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xmlhelp') diff --git a/xmlhelp/source/cxxhelp/provider/bufferedinputstream.cxx b/xmlhelp/source/cxxhelp/provider/bufferedinputstream.cxx index 9adc662def4e..83687313c271 100644 --- a/xmlhelp/source/cxxhelp/provider/bufferedinputstream.cxx +++ b/xmlhelp/source/cxxhelp/provider/bufferedinputstream.cxx @@ -182,7 +182,7 @@ void SAL_CALL BufferedInputStream::seek( sal_Int64 location ) if( 0 <= location && location < m_nBufferSize ) { osl::MutexGuard aGuard( m_aMutex ); - m_nBufferLocation = location; + m_nBufferLocation = sal::static_int_cast( location ); } else throw IllegalArgumentException(); -- cgit