summaryrefslogtreecommitdiff
path: root/xmlhelp
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 23:38:15 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 23:38:15 +0000
commiteefba5de538a14d417f8e9261150e9aef2604c8d (patch)
tree5fd0a5846ec5045306504b305657de5b34af9942 /xmlhelp
parent8da3218881e6497fdd9949c3dbe8fc8e5b756e7c (diff)
INTEGRATION: CWS warnings01 (1.1.182); FILE MERGED
2006/04/06 14:48:33 ab 1.1.182.1: #i55991# warning-free code
Diffstat (limited to 'xmlhelp')
-rw-r--r--xmlhelp/source/cxxhelp/provider/bufferedinputstream.cxx2
1 files changed, 1 insertions, 1 deletions
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<sal_Int32>( location );
}
else
throw IllegalArgumentException();