summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/webdav-neon/PropfindCache.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/webdav-neon/PropfindCache.cxx')
-rw-r--r--ucb/source/ucp/webdav-neon/PropfindCache.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/ucp/webdav-neon/PropfindCache.cxx b/ucb/source/ucp/webdav-neon/PropfindCache.cxx
index 095273a1cd63..b854e6fda323 100644
--- a/ucb/source/ucp/webdav-neon/PropfindCache.cxx
+++ b/ucb/source/ucp/webdav-neon/PropfindCache.cxx
@@ -86,13 +86,13 @@ namespace webdav_ucp
}
}
- void PropertyNamesCache::addCachePropertyNames( PropertyNames& rCacheElement, const sal_uInt32 nLifeTime )
+ void PropertyNamesCache::addCachePropertyNames( PropertyNames& rCacheElement )
{
osl::MutexGuard aGuard( m_aMutex );
OUString aURL( rCacheElement.getURL() );
TimeValue t1;
osl_getSystemTime( &t1 );
- rCacheElement.setStaleTime( t1.Seconds + nLifeTime );
+ rCacheElement.setStaleTime( t1.Seconds + 10 );
m_aTheCache[ aURL ] = rCacheElement;
}