diff options
author | Noel Grandin <noel@peralex.com> | 2015-04-01 14:24:26 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-04-02 09:38:29 +0200 |
commit | 1a18cafecb06a76e872f5f1a9434160ea8ffd881 (patch) | |
tree | 192d5fc8c69eca2f8ead62b2678c37a4c6acd515 /unotools/source/config/searchopt.cxx | |
parent | aa1b911b64641bbf29991af7c6f7798739aba667 (diff) |
loplugin:staticmethods
Change-Id: I3ae555fd9f0dc3c11ea301ee1cb2c799fbec820d
Diffstat (limited to 'unotools/source/config/searchopt.cxx')
-rw-r--r-- | unotools/source/config/searchopt.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unotools/source/config/searchopt.cxx b/unotools/source/config/searchopt.cxx index 76154d8723ee..2df1103c734f 100644 --- a/unotools/source/config/searchopt.cxx +++ b/unotools/source/config/searchopt.cxx @@ -53,7 +53,7 @@ protected: bool Load(); bool Save(); - Sequence< OUString > GetPropertyNames() const; + static Sequence< OUString > GetPropertyNames(); public: SvtSearchOptions_Impl(); @@ -116,7 +116,7 @@ void SvtSearchOptions_Impl::SetModified( bool bVal ) } } -Sequence< OUString > SvtSearchOptions_Impl::GetPropertyNames() const +Sequence< OUString > SvtSearchOptions_Impl::GetPropertyNames() { static const char* aPropNames[ MAX_FLAGS_OFFSET + 1 ] = { |