summaryrefslogtreecommitdiff
path: root/include/sax
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-11-30 11:58:04 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-11-30 11:25:25 +0000
commit92a302146e626c877c493086ff518fde70c3141b (patch)
treeb6b879d090cb08a9959cbc5d3a4b6076415ba482 /include/sax
parent4e1336ca349506d9e4c413f63ef18535eea7c2a7 (diff)
loplugin:countusersofdefaultparams in include/oox..sax
Change-Id: Ifb24c0f536d9c00bc9eb8c782d6854052f2d37b9 Reviewed-on: https://gerrit.libreoffice.org/31408 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/sax')
-rw-r--r--include/sax/fastattribs.hxx5
-rw-r--r--include/sax/fshelper.hxx2
-rw-r--r--include/sax/tools/converter.hxx4
3 files changed, 5 insertions, 6 deletions
diff --git a/include/sax/fastattribs.hxx b/include/sax/fastattribs.hxx
index 1dcbbf491869..0349ebdc6f17 100644
--- a/include/sax/fastattribs.hxx
+++ b/include/sax/fastattribs.hxx
@@ -65,10 +65,9 @@ class SAX_DLLPUBLIC FastTokenHandlerBase
* @return Tokenized form of pStr
*/
static sal_Int32 getTokenFromChars(
- const css::uno::Reference<
- css::xml::sax::XFastTokenHandler > &xTokenHandler,
+ const css::uno::Reference<css::xml::sax::XFastTokenHandler > &xTokenHandler,
FastTokenHandlerBase *pTokenHandler /* can be NULL */,
- const char *pStr, size_t nLength = 0 );
+ const char *pStr, size_t nLength );
};
class SAX_DLLPUBLIC FastAttributeList : public ::cppu::WeakImplHelper1< css::xml::sax::XFastAttributeList >
diff --git a/include/sax/fshelper.hxx b/include/sax/fshelper.hxx
index fd9b85661c91..60c0b87b6b56 100644
--- a/include/sax/fshelper.hxx
+++ b/include/sax/fshelper.hxx
@@ -70,7 +70,7 @@ class SAX_DLLPUBLIC FastSerializerHelper
{
public:
- FastSerializerHelper( const css::uno::Reference< css::io::XOutputStream >& xOutputStream, bool bWriteHeader = true );
+ FastSerializerHelper( const css::uno::Reference< css::io::XOutputStream >& xOutputStream, bool bWriteHeader );
~FastSerializerHelper();
diff --git a/include/sax/tools/converter.hxx b/include/sax/tools/converter.hxx
index 072c3b438d6e..77e5a3839e7b 100644
--- a/include/sax/tools/converter.hxx
+++ b/include/sax/tools/converter.hxx
@@ -67,8 +67,8 @@ public:
/** convert measure to string */
static void convertMeasure( OUStringBuffer& rBuffer,
sal_Int32 nMeasure,
- sal_Int16 SourceUnit = css::util::MeasureUnit::MM_100TH,
- sal_Int16 nTargetUnit = css::util::MeasureUnit::INCH );
+ sal_Int16 SourceUnit,
+ sal_Int16 nTargetUnit );
/** convert string to boolean */
static bool convertBool( bool& rBool,