diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 11:12:07 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 11:12:07 +0000 |
commit | 308abaad91d783bb0b57695d9a20982c3617353d (patch) | |
tree | f825a39fc2a868abd690805c5f9ea400a9695fa0 /ucbhelper | |
parent | 9c4b85d439a0ace770a69ee7c9d6b78e422d49a7 (diff) |
INTEGRATION: CWS warnings01 (1.6.10); FILE MERGED
2005/11/09 12:24:23 pl 1.6.10.4: #i53898# removed warnings
2005/11/07 16:56:52 pl 1.6.10.3: RESYNC: (1.7-1.8); FILE MERGED
2005/09/22 18:59:41 sb 1.6.10.2: RESYNC: (1.6-1.7); FILE MERGED
2005/09/08 08:48:30 sb 1.6.10.1: #i53898# Made code warning-free.
Diffstat (limited to 'ucbhelper')
-rw-r--r-- | ucbhelper/source/client/proxydecider.cxx | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/ucbhelper/source/client/proxydecider.cxx b/ucbhelper/source/client/proxydecider.cxx index 28c432a61402..bc76338b3461 100644 --- a/ucbhelper/source/client/proxydecider.cxx +++ b/ucbhelper/source/client/proxydecider.cxx @@ -4,9 +4,9 @@ * * $RCSfile: proxydecider.cxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: rt $ $Date: 2005-10-18 08:47:58 $ + * last change: $Author: hr $ $Date: 2006-06-19 12:12:07 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -118,10 +118,10 @@ class HostnameCache typedef std::pair< rtl::OUString, rtl::OUString > HostListEntry; std::list< HostListEntry > m_aHostList; - sal_Int32 m_nCapacity; + sal_uInt32 m_nCapacity; public: - explicit HostnameCache( sal_Int32 nCapacity ) + explicit HostnameCache( sal_uInt32 nCapacity ) : m_nCapacity( nCapacity ) {} bool get( const rtl::OUString & rKey, rtl::OUString & rValue ) const @@ -714,8 +714,7 @@ void SAL_CALL InternetProxyDecider_Impl::changesOccurred( //========================================================================= // virtual -void SAL_CALL InternetProxyDecider_Impl::disposing( - const lang::EventObject& Source ) +void SAL_CALL InternetProxyDecider_Impl::disposing(const lang::EventObject&) throw( uno::RuntimeException ) { if ( m_xNotifier.is() ) |