summaryrefslogtreecommitdiff
path: root/ucbhelper/source/client/proxydecider.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucbhelper/source/client/proxydecider.cxx')
-rw-r--r--ucbhelper/source/client/proxydecider.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/ucbhelper/source/client/proxydecider.cxx b/ucbhelper/source/client/proxydecider.cxx
index 8c26104a07b6..2862dba331bd 100644
--- a/ucbhelper/source/client/proxydecider.cxx
+++ b/ucbhelper/source/client/proxydecider.cxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -93,7 +93,7 @@ class HostnameCache
typedef std::pair< rtl::OUString, rtl::OUString > HostListEntry;
std::list< HostListEntry > m_aHostList;
- sal_uInt32 m_nCapacity;
+ sal_uInt32 m_nCapacity;
public:
explicit HostnameCache( sal_uInt32 nCapacity )
@@ -110,7 +110,7 @@ public:
{
if ( (*it).first == rKey )
{
- rValue = (*it).second;
+ rValue = (*it).second;
return true;
}
it++;
@@ -123,7 +123,7 @@ public:
if ( m_aHostList.size() == m_nCapacity )
m_aHostList.resize( m_nCapacity / 2 );
- m_aHostList.push_front( HostListEntry( rKey, rValue ) );
+ m_aHostList.push_front( HostListEntry( rKey, rValue ) );
}
};
@@ -556,7 +556,7 @@ const InternetProxyServer & InternetProxyDecider_Impl::getProxy(
// This might be quite expensive (DNS lookup).
const osl::SocketAddr aAddr( aHost, nPort );
aFullyQualifiedHost = aAddr.getHostname().toAsciiLowerCase();
- m_aHostnames.put( aHost, aFullyQualifiedHost );
+ m_aHostnames.put( aHost, aFullyQualifiedHost );
}
// Error resolving name? -> fallback.