summaryrefslogtreecommitdiff
path: root/stoc/source/security/lru_cache.h
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-04-07 12:06:47 +0200
committerLuboš Luňák <l.lunak@suse.cz>2013-04-07 14:23:11 +0200
commit1946794ae09ba732022fe6a74ea45e304ab70b84 (patch)
treee32bd7ba61fa021ecc7f8c85959df8ca837d6e81 /stoc/source/security/lru_cache.h
parent5b08c6e7a21dda94d5b755eea0b1ed1e9c199bec (diff)
mass removal of rtl:: prefixes for O(U)String*
Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
Diffstat (limited to 'stoc/source/security/lru_cache.h')
-rw-r--r--stoc/source/security/lru_cache.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/stoc/source/security/lru_cache.h b/stoc/source/security/lru_cache.h
index bb0fcba130db..be081b761074 100644
--- a/stoc/source/security/lru_cache.h
+++ b/stoc/source/security/lru_cache.h
@@ -188,11 +188,11 @@ inline t_val const * lru_cache< t_key, t_val, t_hashKey, t_equalKey >::lookup(
Entry * entry = iFind->second;
toFront( entry );
#ifdef __CACHE_DIAGNOSE
- ::rtl::OUStringBuffer buf( 48 );
+ OUStringBuffer buf( 48 );
buf.appendAscii( RTL_CONSTASCII_STRINGPARAM("> retrieved element \"") );
buf.append( entry->m_key );
buf.appendAscii( RTL_CONSTASCII_STRINGPARAM("\" from cache") );
- ::rtl::OString str( ::rtl::OUStringToOString(
+ OString str( OUStringToOString(
buf.makeStringAndClear(), RTL_TEXTENCODING_ASCII_US ) );
OSL_TRACE( "%s", str.getStr() );
#endif
@@ -217,11 +217,11 @@ inline void lru_cache< t_key, t_val, t_hashKey, t_equalKey >::set(
#ifdef __CACHE_DIAGNOSE
if (entry->m_key.getLength())
{
- ::rtl::OUStringBuffer buf( 48 );
+ OUStringBuffer buf( 48 );
buf.appendAscii( RTL_CONSTASCII_STRINGPARAM("> kicking element \"") );
buf.append( entry->m_key );
buf.appendAscii( RTL_CONSTASCII_STRINGPARAM("\" from cache") );
- ::rtl::OString str( ::rtl::OUStringToOString(
+ OString str( OUStringToOString(
buf.makeStringAndClear(), RTL_TEXTENCODING_ASCII_US ) );
OSL_TRACE( "%s", str.getStr() );
}
@@ -239,11 +239,11 @@ inline void lru_cache< t_key, t_val, t_hashKey, t_equalKey >::set(
{
entry = iFind->second;
#ifdef __CACHE_DIAGNOSE
- ::rtl::OUStringBuffer buf( 48 );
+ OUStringBuffer buf( 48 );
buf.appendAscii( RTL_CONSTASCII_STRINGPARAM("> replacing element \"") );
buf.append( entry->m_key );
buf.appendAscii( RTL_CONSTASCII_STRINGPARAM("\" in cache") );
- ::rtl::OString str( ::rtl::OUStringToOString(
+ OString str( OUStringToOString(
buf.makeStringAndClear(), RTL_TEXTENCODING_ASCII_US ) );
OSL_TRACE( "%s", str.getStr() );
#endif