diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-02-09 21:51:19 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-02-09 21:51:19 +0000 |
commit | 3122799da13eb65b7753671c1783d45bfc8a3b22 (patch) | |
tree | 31e39d0bc24e80f93f8fea7eec5c4970c72af493 /vcl | |
parent | b950727ac84c9baa00b957dd80174de2f4a4e5c5 (diff) |
vcl: I18nHelper: delete unused getLocal() method
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/inc/vcl/i18nhelp.hxx | 2 | ||||
-rw-r--r-- | vcl/source/app/i18nhelp.cxx | 5 |
2 files changed, 0 insertions, 7 deletions
diff --git a/vcl/inc/vcl/i18nhelp.hxx b/vcl/inc/vcl/i18nhelp.hxx index 32f9e168243c..610f5cffeaeb 100644 --- a/vcl/inc/vcl/i18nhelp.hxx +++ b/vcl/inc/vcl/i18nhelp.hxx @@ -79,8 +79,6 @@ public: I18nHelper( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& rxMSF, const ::com::sun::star::lang::Locale& rLocale ); ~I18nHelper(); - const ::com::sun::star::lang::Locale& getLocale() const; - sal_Int32 CompareString( const String& rStr1, const String& rStr2 ) const; sal_Bool MatchString( const String& rStr1, const String& rStr2 ) const; diff --git a/vcl/source/app/i18nhelp.cxx b/vcl/source/app/i18nhelp.cxx index 0c1c3fadaddb..ea4eb34e8213 100644 --- a/vcl/source/app/i18nhelp.cxx +++ b/vcl/source/app/i18nhelp.cxx @@ -87,11 +87,6 @@ LocaleDataWrapper& vcl::I18nHelper::ImplGetLocaleDataWrapper() const return *mpLocaleDataWrapper; } -const ::com::sun::star::lang::Locale& vcl::I18nHelper::getLocale() const -{ - return maLocale; -} - inline bool is_formatting_mark( sal_Unicode c ) { if( (c >= 0x200B) && (c <= 0x200F) ) // BiDi and zero-width-markers |