diff options
author | Noel Grandin <noel@peralex.com> | 2015-04-30 10:47:56 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-05-05 09:30:39 +0200 |
commit | f304a7a14a4af4d3f46eab18d5494194028e61ef (patch) | |
tree | 7f51b8efe4427d01fc688925c44e0a05e3c64c7b /include/oox/token | |
parent | b2b85c2b3920fdd92b8d3bf32af1cac5679e116e (diff) |
loplugin:staticmethods
Change-Id: I384a5e60f4b7b2f479c89ef97630519059ab720f
Diffstat (limited to 'include/oox/token')
-rw-r--r-- | include/oox/token/tokenmap.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/oox/token/tokenmap.hxx b/include/oox/token/tokenmap.hxx index 9de4ece0702b..fc07093d3ccf 100644 --- a/include/oox/token/tokenmap.hxx +++ b/include/oox/token/tokenmap.hxx @@ -38,7 +38,7 @@ public: ~TokenMap(); /** Returns the token identifier for the passed Unicode token name. */ - sal_Int32 getTokenFromUnicode( const OUString& rUnicodeName ) const; + static sal_Int32 getTokenFromUnicode( const OUString& rUnicodeName ); /** Returns the UTF8 name of the passed token identifier as byte sequence. */ ::com::sun::star::uno::Sequence< sal_Int8 > @@ -73,7 +73,7 @@ public: } private: - sal_Int32 getTokenPerfectHash( const char *pToken, sal_Int32 nLength ) const; + static sal_Int32 getTokenPerfectHash( const char *pToken, sal_Int32 nLength ); typedef ::std::vector< ::com::sun::star::uno::Sequence< sal_Int8 > > TokenNameVector; |