From a880ec813114c204303a5b2a27909ab7f9e027de Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 15 Apr 2015 09:06:34 +0200 Subject: loplugin:staticmethods Change-Id: Id7fc12bc61c6e803f45cc60556d9cf54ac2e529f --- lingucomponent/source/hyphenator/hyphen/hyphenimp.hxx | 6 +++--- lingucomponent/source/thesaurus/libnth/nthesimp.hxx | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'lingucomponent') 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; -- cgit