summaryrefslogtreecommitdiff
path: root/shell/source/backends/localebe/localebackend.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'shell/source/backends/localebe/localebackend.hxx')
-rw-r--r--shell/source/backends/localebe/localebackend.hxx28
1 files changed, 14 insertions, 14 deletions
diff --git a/shell/source/backends/localebe/localebackend.hxx b/shell/source/backends/localebe/localebackend.hxx
index e84be5e2285e..3eea01286f68 100644
--- a/shell/source/backends/localebe/localebackend.hxx
+++ b/shell/source/backends/localebe/localebackend.hxx
@@ -38,15 +38,15 @@ class LocaleBackend : public ::cppu::WeakImplHelper2 <
static LocaleBackend* createInstance();
// XServiceInfo
- virtual rtl::OUString SAL_CALL
+ virtual OUString SAL_CALL
getImplementationName( )
throw (uno::RuntimeException) ;
virtual sal_Bool SAL_CALL
- supportsService( const rtl::OUString& aServiceName )
+ supportsService( const OUString& aServiceName )
throw (uno::RuntimeException) ;
- virtual uno::Sequence<rtl::OUString> SAL_CALL
+ virtual uno::Sequence<OUString> SAL_CALL
getSupportedServiceNames( )
throw (uno::RuntimeException) ;
@@ -55,13 +55,13 @@ class LocaleBackend : public ::cppu::WeakImplHelper2 <
@return implementation name
*/
- static rtl::OUString SAL_CALL getBackendName(void) ;
+ static OUString SAL_CALL getBackendName(void) ;
/**
Provides the supported services names
@return service names
*/
- static uno::Sequence<rtl::OUString> SAL_CALL getBackendServiceNames(void) ;
+ static uno::Sequence<OUString> SAL_CALL getBackendServiceNames(void) ;
// XPropertySet
virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL
@@ -69,7 +69,7 @@ class LocaleBackend : public ::cppu::WeakImplHelper2 <
{ return css::uno::Reference< css::beans::XPropertySetInfo >(); }
virtual void SAL_CALL setPropertyValue(
- rtl::OUString const &, css::uno::Any const &)
+ OUString const &, css::uno::Any const &)
throw (
css::beans::UnknownPropertyException,
css::beans::PropertyVetoException,
@@ -77,13 +77,13 @@ class LocaleBackend : public ::cppu::WeakImplHelper2 <
css::lang::WrappedTargetException, css::uno::RuntimeException);
virtual css::uno::Any SAL_CALL getPropertyValue(
- rtl::OUString const & PropertyName)
+ OUString const & PropertyName)
throw (
css::beans::UnknownPropertyException,
css::lang::WrappedTargetException, css::uno::RuntimeException);
virtual void SAL_CALL addPropertyChangeListener(
- rtl::OUString const &,
+ OUString const &,
css::uno::Reference< css::beans::XPropertyChangeListener > const &)
throw (
css::beans::UnknownPropertyException,
@@ -91,7 +91,7 @@ class LocaleBackend : public ::cppu::WeakImplHelper2 <
{}
virtual void SAL_CALL removePropertyChangeListener(
- rtl::OUString const &,
+ OUString const &,
css::uno::Reference< css::beans::XPropertyChangeListener > const &)
throw (
css::beans::UnknownPropertyException,
@@ -99,7 +99,7 @@ class LocaleBackend : public ::cppu::WeakImplHelper2 <
{}
virtual void SAL_CALL addVetoableChangeListener(
- rtl::OUString const &,
+ OUString const &,
css::uno::Reference< css::beans::XVetoableChangeListener > const &)
throw (
css::beans::UnknownPropertyException,
@@ -107,7 +107,7 @@ class LocaleBackend : public ::cppu::WeakImplHelper2 <
{}
virtual void SAL_CALL removeVetoableChangeListener(
- rtl::OUString const &,
+ OUString const &,
css::uno::Reference< css::beans::XVetoableChangeListener > const &)
throw (
css::beans::UnknownPropertyException,
@@ -127,13 +127,13 @@ class LocaleBackend : public ::cppu::WeakImplHelper2 <
private:
// Returns the user locale
- static rtl::OUString getLocale(void);
+ static OUString getLocale(void);
// Returns the user UI locale
- static rtl::OUString getUILocale(void);
+ static OUString getUILocale(void);
// Returns the system default locale
- static rtl::OUString getSystemLocale(void);
+ static OUString getSystemLocale(void);
} ;