diff options
author | Noel Grandin <noel@peralex.com> | 2015-04-15 09:06:34 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-04-23 13:08:48 +0200 |
commit | a880ec813114c204303a5b2a27909ab7f9e027de (patch) | |
tree | f5942b76bcc6ccbe970d18e7e107c78990db44f3 /lingucomponent/source | |
parent | 79ed057b955a8d23e8289b9a5898c8bdaebabbfa (diff) |
loplugin:staticmethods
Change-Id: Id7fc12bc61c6e803f45cc60556d9cf54ac2e529f
Diffstat (limited to 'lingucomponent/source')
-rw-r--r-- | lingucomponent/source/hyphenator/hyphen/hyphenimp.hxx | 6 | ||||
-rw-r--r-- | lingucomponent/source/thesaurus/libnth/nthesimp.hxx | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/lingucomponent/source/hyphenator/hyphen/hyphenimp.hxx b/lingucomponent/source/hyphenator/hyphen/hyphenimp.hxx index 25b7e7d93eb5..ad5db821655a 100644 --- a/lingucomponent/source/hyphenator/hyphen/hyphenimp.hxx +++ b/lingucomponent/source/hyphenator/hyphen/hyphenimp.hxx @@ -122,9 +122,9 @@ public: static Sequence< OUString > getSupportedServiceNames_Static() throw(); private: - OUString SAL_CALL makeLowerCase(const OUString&, CharClass *); - OUString SAL_CALL makeUpperCase(const OUString&, CharClass *); - OUString SAL_CALL makeInitCap(const OUString&, CharClass *); + static OUString SAL_CALL makeLowerCase(const OUString&, CharClass *); + static OUString SAL_CALL makeUpperCase(const OUString&, CharClass *); + static OUString SAL_CALL makeInitCap(const OUString&, CharClass *); }; inline OUString Hyphenator::getImplementationName_Static() throw() diff --git a/lingucomponent/source/thesaurus/libnth/nthesimp.hxx b/lingucomponent/source/thesaurus/libnth/nthesimp.hxx index 4504b3c5c9f9..765234943231 100644 --- a/lingucomponent/source/thesaurus/libnth/nthesimp.hxx +++ b/lingucomponent/source/thesaurus/libnth/nthesimp.hxx @@ -124,9 +124,9 @@ public: getSupportedServiceNames_Static() throw(); private: - OUString SAL_CALL makeLowerCase(const OUString&, CharClass *); - OUString SAL_CALL makeUpperCase(const OUString&, CharClass *); - OUString SAL_CALL makeInitCap(const OUString&, CharClass *); + static OUString SAL_CALL makeLowerCase(const OUString&, CharClass *); + static OUString SAL_CALL makeUpperCase(const OUString&, CharClass *); + static OUString SAL_CALL makeInitCap(const OUString&, CharClass *); /* static ::com::sun::star::uno::Reference< ::com::sun::star::linguistic2::XLinguServiceManager > xLngSvcMgr; |