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.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/shell/source/backends/localebe/localebackend.hxx b/shell/source/backends/localebe/localebackend.hxx
index 59a7fbbb108c..29ca23c1d8bd 100644
--- a/shell/source/backends/localebe/localebackend.hxx
+++ b/shell/source/backends/localebe/localebackend.hxx
@@ -55,13 +55,13 @@ class LocaleBackend : public ::cppu::WeakImplHelper2 <
@return implementation name
*/
- static OUString SAL_CALL getBackendName(void) ;
+ static OUString SAL_CALL getBackendName() ;
/**
Provides the supported services names
@return service names
*/
- static uno::Sequence<OUString> SAL_CALL getBackendServiceNames(void) ;
+ static uno::Sequence<OUString> SAL_CALL getBackendServiceNames() ;
// XPropertySet
virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL
@@ -123,17 +123,17 @@ class LocaleBackend : public ::cppu::WeakImplHelper2 <
LocaleBackend();
/** Destructor */
- virtual ~LocaleBackend(void) ;
+ virtual ~LocaleBackend() ;
private:
// Returns the user locale
- static OUString getLocale(void);
+ static OUString getLocale();
// Returns the user UI locale
- static OUString getUILocale(void);
+ static OUString getUILocale();
// Returns the system default locale
- static OUString getSystemLocale(void);
+ static OUString getSystemLocale();
} ;