diff options
author | Noel Grandin <noel@peralex.com> | 2015-03-27 10:50:38 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-03-27 10:51:08 +0200 |
commit | 1a08ce70788fe3d8938627aa21bde1861cd94181 (patch) | |
tree | 0854d10f83309b02d9a1661131f067c183cf1fd8 /sax | |
parent | aa7a829e7df30a5356fca2bae0bb7eb51367f08d (diff) |
loplugin:staticfunction
Change-Id: I10c30ef28e7321882a720d1e7869a75a89febfc5
Diffstat (limited to 'sax')
-rw-r--r-- | sax/inc/xml2utf.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sax/inc/xml2utf.hxx b/sax/inc/xml2utf.hxx index 526dd13fc7a0..b9ffee34ee5f 100644 --- a/sax/inc/xml2utf.hxx +++ b/sax/inc/xml2utf.hxx @@ -116,10 +116,10 @@ private: // if enough data is available to scan encoding // @return TRUE, when encoding is retrievable // @return FALSE, when more data is needed - bool isEncodingRecognizable( const ::com::sun::star::uno::Sequence< sal_Int8 > & seq ); + static bool isEncodingRecognizable( const ::com::sun::star::uno::Sequence< sal_Int8 > & seq ); // When encoding attribute is within the text (in the first line), it is removed. - void removeEncoding( ::com::sun::star::uno::Sequence<sal_Int8> &seq ); + static void removeEncoding( ::com::sun::star::uno::Sequence<sal_Int8> &seq ); // Initializes decoding depending on m_sEncoding setting void initializeDecoding(); |