summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/hierarchy/hierarchyprovider.hxx
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 /ucb/source/ucp/hierarchy/hierarchyprovider.hxx
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 'ucb/source/ucp/hierarchy/hierarchyprovider.hxx')
-rw-r--r--ucb/source/ucp/hierarchy/hierarchyprovider.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/ucb/source/ucp/hierarchy/hierarchyprovider.hxx b/ucb/source/ucp/hierarchy/hierarchyprovider.hxx
index e8e2a5d8f4ab..153651179de6 100644
--- a/ucb/source/ucp/hierarchy/hierarchyprovider.hxx
+++ b/ucb/source/ucp/hierarchy/hierarchyprovider.hxx
@@ -66,7 +66,7 @@ struct ConfigProviderMapEntry
struct equalString
{
bool operator()(
- const rtl::OUString& rKey1, const rtl::OUString& rKey2 ) const
+ const OUString& rKey1, const OUString& rKey2 ) const
{
return !!( rKey1 == rKey2 );
}
@@ -74,7 +74,7 @@ struct equalString
struct hashString
{
- size_t operator()( const rtl::OUString & rName ) const
+ size_t operator()( const OUString & rName ) const
{
return rName.hashCode();
}
@@ -82,7 +82,7 @@ struct hashString
typedef boost::unordered_map
<
- rtl::OUString, // servcie specifier
+ OUString, // servcie specifier
ConfigProviderMapEntry,
hashString,
equalString
@@ -131,10 +131,10 @@ public:
// Non-Interface methods
com::sun::star::uno::Reference<
com::sun::star::lang::XMultiServiceFactory >
- getConfigProvider( const rtl::OUString & rServiceSpecifier );
+ getConfigProvider( const OUString & rServiceSpecifier );
com::sun::star::uno::Reference<
com::sun::star::container::XHierarchicalNameAccess >
- getRootConfigReadNameAccess( const rtl::OUString & rServiceSpecifier );
+ getRootConfigReadNameAccess( const OUString & rServiceSpecifier );
// Note: may retrun an empty reference.
com::sun::star::uno::Reference<